Sitefinity CMS · Schema

ContentOperationRequest

Request body for content lifecycle operations

Content ManagementHeadless CMS.NETREST

Properties

Name Type Description
operation string The lifecycle operation to perform
View JSON Schema on GitHub

JSON Schema

sitefinity-cms-contentoperationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentOperationRequest",
  "title": "ContentOperationRequest",
  "type": "object",
  "description": "Request body for content lifecycle operations",
  "required": [
    "operation"
  ],
  "properties": {
    "operation": {
      "type": "string",
      "enum": [
        "Publish",
        "Unpublish"
      ],
      "description": "The lifecycle operation to perform"
    }
  }
}