Atlassian · Schema

SpacePropertyUpdate

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
key string
value object
version object
space object
View JSON Schema on GitHub

JSON Schema

atlassian-spacepropertyupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpacePropertyUpdate",
  "title": "SpacePropertyUpdate",
  "required": [
    "value",
    "version"
  ],
  "type": "object",
  "properties": {
    "key": {
      "type": "string"
    },
    "value": {
      "oneOf": [
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        {
          "type": "boolean"
        },
        {
          "type": "object",
          "additionalProperties": true,
          "properties": {}
        },
        {
          "type": "string"
        }
      ]
    },
    "version": {
      "$ref": "#/components/schemas/Version"
    },
    "space": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "key": {
          "type": "string",
          "description": "The key of the space"
        }
      }
    }
  }
}