The entity object representation and fields are described below.
entity was introduced in API version V1
entity has not been marked for deprecation
A content entity, similar to a page with a collection of content items of differing types
{
"owner" : {
"urn" : "32a90f18-aaa0-4bdc-a63e-4efd2e16c28c",
"url" : "/n/v1/company/32a90f18-aaa0-4bdc-a63e-4efd2e16c28c"
},
"status" : "DRAFT_UNPUBLISHED",
"name" : "/32a90f18-aaa0-4bdc-a63e-4efd2e16c28c/content/",
"language" : "en-GB",
"variant" : "",
"publishTimestamp" : "2025-07-14T09:00:00",
"updatedTimestamp" : "2025-07-14T09:00:00"
}{
"urn" : "4fdf15cf-cfa3-4b43-9e92-57dfbbc0366d",
"url" : "/n/v1/entity/4fdf15cf-cfa3-4b43-9e92-57dfbbc0366d",
"owner" : {
"urn" : "32a90f18-aaa0-4bdc-a63e-4efd2e16c28c",
"url" : "/n/v1/company/32a90f18-aaa0-4bdc-a63e-4efd2e16c28c"
},
"status" : "PUBLISHED",
"name" : "/32a90f18-aaa0-4bdc-a63e-4efd2e16c28c/content/",
"language" : "en-GB",
"variant" : "",
"publishTimestamp" : "2025-07-14T09:00:00",
"updatedTimestamp" : "2025-07-14T09:00:00",
"texts" : [ {
"urn" : "c7fde7fa-e51c-4f63-a2a6-c790fa6457d6",
"name" : "page_headline",
"sortOrder" : 0,
"value" : "Welcome to Baack!",
"url" : "/n/v1/textitem/c7fde7fa-e51c-4f63-a2a6-c790fa6457d6"
} ],
"doubles" : [ ],
"dateTimes" : [ ],
"booleans" : [ ],
"images" : [ ],
"templates" : [ ],
"markdowns" : [ ],
"latLongs" : [ ],
"longs" : [ ]
}| Name | Type | Description | Constraints |
|---|---|---|---|
| urn | String representation of a Unique Resource Name. Typically a UUID with 36 characters. | UUID for the entity | Required on create. Minimum length: 36. Maximum length: 36. |
| url | URL represented as a string | URL for accessing this entity | |
| owner | company | The company owner for the entity | Required on create. |
| status | Publication status used to manage publication lifecycle. Set to 'PUBLISH' (verb) to trigger publication of all draft items pending. | Required on create. Allowed values:
| |
| name | A path string similar to UNIX path for absolute paths | name of the content entity | Required on create. Maximum length: 1024. |
| language | Language code typically expressed in ISO 639 codes used by browsers | ISO 639-1 code for entity language. See https://en.wikipedia.org/wiki/ISO_639-1 e.g. en_GB | Required on create. Maximum length: 16. |
| variant | String literal | The variant of the entity, typically a tag, used for creating variations of the content for experimentation | Maximum length: 128. |
| publishTimestamp | Timestamp expressed in ISO 8601 format without timezone including milliseconds. Note unless otherwise stated in UTC zone. | Timestamp the entity was published. Note unpublished entities are not visible (publish time in the past). | |
| updatedTimestamp | Timestamp expressed in ISO 8601 format without timezone including milliseconds. Note unless otherwise stated in UTC zone. | Timestamp of the last update of the content entity. | |
| texts | textitem[] | Collection of text items associated with the entity | Ignored on update. |
| doubles | doubleitem[] | Collection of double items associated with the entity | Ignored on update. |
| dateTimes | datetimeitem[] | Collection of date time items associated with the entity | Ignored on update. |
| booleans | booleanitem[] | Collection of boolean items associated with the entity | Ignored on update. |
| images | imageitem[] | Collection of image items associated with the entity | Ignored on update. |
| templates | templateitem[] | Collection of template items associated with the entity | Ignored on update. |
| markdowns | markdownitem[] | Collection of markdown items associated with the entity | Ignored on update. |
| latLongs | latlong[] | Collection of latitude longitude itemsassociated with the entity | Ignored on update. |
| longs | longitem[] | Collection of long integer items | Ignored on update. |