Sitefinity CMS · Schema

ContentItem

A Sitefinity CMS content item

Content ManagementHeadless CMS.NETREST

Properties

Name Type Description
Id string Unique identifier of the content item
Title string Title of the content item
Content string Main content body (HTML)
Summary string Short summary or lead paragraph
Status string Publication status of the item
PublicationDate string When the item was or should be published
LastModified string When the item was last modified
Author string Author of the content item
UrlName string URL-friendly name used in page routing
Tags array Tags associated with the content item
Category array Categories assigned to the content item
View JSON Schema on GitHub

JSON Schema

sitefinity-cms-contentitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentItem",
  "title": "ContentItem",
  "type": "object",
  "description": "A Sitefinity CMS content item",
  "properties": {
    "Id": {
      "type": "string",
      "format": "uuid",
      "description": "Unique identifier of the content item"
    },
    "Title": {
      "type": "string",
      "description": "Title of the content item"
    },
    "Content": {
      "type": "string",
      "description": "Main content body (HTML)"
    },
    "Summary": {
      "type": "string",
      "description": "Short summary or lead paragraph"
    },
    "Status": {
      "type": "string",
      "description": "Publication status of the item",
      "enum": [
        "Draft",
        "Published",
        "Unpublished"
      ]
    },
    "PublicationDate": {
      "type": "string",
      "format": "date-time",
      "description": "When the item was or should be published"
    },
    "LastModified": {
      "type": "string",
      "format": "date-time",
      "description": "When the item was last modified"
    },
    "Author": {
      "type": "string",
      "description": "Author of the content item"
    },
    "UrlName": {
      "type": "string",
      "description": "URL-friendly name used in page routing"
    },
    "Tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags associated with the content item"
    },
    "Category": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Categories assigned to the content item"
    }
  }
}