Atlassian · Schema

PropertyValue

The value of the property. This can be empty or a complex object. 64KB Size Limit For example, ``` "value": { "example1": "value", "example2": true, "example3": 123, "example4": ["value1", "value2"], } ```

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-propertyvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PropertyValue",
  "title": "PropertyValue",
  "oneOf": [
    {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    {
      "type": "boolean"
    },
    {
      "type": "object",
      "additionalProperties": true,
      "properties": {}
    },
    {
      "type": "string"
    }
  ],
  "description": "The value of the property. This can be empty or a complex object. 64KB Size Limit\nFor example,\n```\n\"value\": {\n  \"example1\": \"value\",\n  \"example2\": true,\n  \"example3\": 123,\n  \"example4\": [\"value1\", \"value2\"],\n}\n```"
}