Atlassian · Schema

SpaceProperty

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-spaceproperty-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpaceProperty",
  "title": "SpaceProperty",
  "required": [
    "_expandable",
    "id",
    "key",
    "value"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "key": {
      "type": "string",
      "example": "example_value"
    },
    "value": {
      "oneOf": [
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        {
          "type": "boolean"
        },
        {
          "type": "object",
          "additionalProperties": true,
          "properties": {}
        },
        {
          "type": "string"
        }
      ],
      "example": "example_value"
    },
    "version": {
      "$ref": "#/components/schemas/Version"
    },
    "space": {
      "$ref": "#/components/schemas/Space"
    },
    "_links": {
      "$ref": "#/components/schemas/GenericLinks"
    },
    "_expandable": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string"
        },
        "space": {
          "type": "string"
        }
      },
      "example": "example_value"
    }
  }
}