Atlassian · Schema

ContentPropertyCreateNoKey

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
value object The value of the content property. This can be empty or a complex object.
View JSON Schema on GitHub

JSON Schema

atlassian-contentpropertycreatenokey-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContentPropertyCreateNoKey",
  "title": "ContentPropertyCreateNoKey",
  "required": [
    "value"
  ],
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "value": {
      "oneOf": [
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        {
          "type": "boolean"
        },
        {
          "type": "object",
          "additionalProperties": true,
          "properties": {}
        },
        {
          "type": "string"
        }
      ],
      "description": "The value of the content property. This can be empty or a complex object.",
      "example": "example_value"
    }
  }
}