Atlassian · Schema

SpaceDescription

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
value string
representation string
embeddedContent array
View JSON Schema on GitHub

JSON Schema

atlassian-spacedescription-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpaceDescription",
  "title": "SpaceDescription",
  "required": [
    "embeddedContent",
    "representation",
    "value"
  ],
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "value": {
      "type": "string",
      "example": "example_value"
    },
    "representation": {
      "type": "string",
      "enum": [
        "plain",
        "view"
      ],
      "example": "plain"
    },
    "embeddedContent": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {}
      },
      "example": []
    }
  }
}