Theme Data Model

Working copy themes in the current site.

Sample JSON Data

      {
        "data": {
        {
          "id" "07e22032-16dd-41a8-9948-bcc48ba2d1e9",
          "type": "themes",
          "attributes": {
            "created-at": "2012-04-23T18:25:43.511Z"
          },
          "relationships": {
            "user": {
              "data": {
                "id": "5f173cb8-3c12-4c08-86d1-69383d5dc7da",
                "type": "users"
              }
            },
            "theme-assets": {
              "data": []
            },
            "layouts": {
              "data": []
            },
            "content-templates": {
              "data": []
            },
            "navigations": {
              "data": []
            },
            "partials": {
              "data": []
            }
          }
        }
      }

Attributes

Attribute Type Required Description
created-at date Read-only Records when theme record was created, localized to the current logged in user’s time zone.

Relationships

Title Type Required Description
user object Read-only User who created this theme.
theme-assets array No Theme assets added to this theme.
layouts array Read-only Layouts added to this theme.
content-templates array Read-only Content templates added to this theme.
navigations array Read-only Navigation menus added to this theme.
partials array Read-only Partials added to this theme.

Related