Sitefinity CMS · Schema

ContentItemListResponse

A paginated list of content items

Content ManagementHeadless CMS.NETREST

Properties

Name Type Description
value array Array of content items
@odata.count integer Total count of items matching the query
View JSON Schema on GitHub

JSON Schema

sitefinity-cms-contentitemlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentItemListResponse",
  "title": "ContentItemListResponse",
  "type": "object",
  "description": "A paginated list of content items",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ContentItem"
      },
      "description": "Array of content items"
    },
    "@odata.count": {
      "type": "integer",
      "description": "Total count of items matching the query"
    }
  }
}