Atlassian · Schema

ContentStateFailure

Object describing why a content state set failed

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
contentId object
failureReason string
View JSON Schema on GitHub

JSON Schema

atlassian-contentstatefailure-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentStateFailure",
  "title": "ContentStateFailure",
  "required": [
    "contentId",
    "failureReason"
  ],
  "type": "object",
  "properties": {
    "contentId": {
      "$ref": "#/components/schemas/ContentId"
    },
    "failureReason": {
      "type": "string"
    }
  },
  "description": "Object describing why a content state set failed"
}