Atlassian · Schema

SpacePropertyCreate

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
key string The key of the new property.
value object
space object
View JSON Schema on GitHub

JSON Schema

atlassian-spacepropertycreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpacePropertyCreate",
  "title": "SpacePropertyCreate",
  "required": [
    "key",
    "value"
  ],
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "The key of the new property."
    },
    "value": {
      "$ref": "#/components/schemas/PropertyValue"
    },
    "space": {
      "type": "object",
      "additionalProperties": true,
      "properties": {
        "key": {
          "type": "string",
          "description": "The key of the space"
        }
      }
    }
  }
}