Sitefinity CMS · Schema

CreateContentItemRequest

Request body for creating or updating a content item

Content ManagementHeadless CMS.NETREST

Properties

Name Type Description
Title string Title of the content item
Content string Main content body in HTML
Summary string Short summary or excerpt
UrlName string URL-friendly name for routing
PublicationDate string Scheduled publication date
View JSON Schema on GitHub

JSON Schema

sitefinity-cms-createcontentitemrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateContentItemRequest",
  "title": "CreateContentItemRequest",
  "type": "object",
  "description": "Request body for creating or updating a content item",
  "required": [
    "Title"
  ],
  "properties": {
    "Title": {
      "type": "string",
      "description": "Title of the content item"
    },
    "Content": {
      "type": "string",
      "description": "Main content body in HTML"
    },
    "Summary": {
      "type": "string",
      "description": "Short summary or excerpt"
    },
    "UrlName": {
      "type": "string",
      "description": "URL-friendly name for routing"
    },
    "PublicationDate": {
      "type": "string",
      "format": "date-time",
      "description": "Scheduled publication date"
    }
  }
}