Atlassian · Schema

SpaceDescriptionCreate

The description of the new/updated space. Note, only the 'plain' representation can be used for the description when creating or updating a space.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
plain object
View JSON Schema on GitHub

JSON Schema

atlassian-spacedescriptioncreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpaceDescriptionCreate",
  "title": "SpaceDescriptionCreate",
  "required": [
    "plain"
  ],
  "type": "object",
  "nullable": true,
  "properties": {
    "plain": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "value": {
          "type": "string",
          "description": "The space description."
        },
        "representation": {
          "type": "string",
          "description": "Set to 'plain'."
        }
      }
    }
  },
  "description": "The description of the new/updated space. Note, only the 'plain' representation\ncan be used for the description when creating or updating a space."
}