Atlassian · Schema

IssueFieldOptionConfiguration

Details of the projects the option is available in.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
attributes array DEPRECATED
scope object Defines the projects that the option is available in. If the scope is not defined, then the option is available in all projects.
View JSON Schema on GitHub

JSON Schema

atlassian-issuefieldoptionconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueFieldOptionConfiguration",
  "title": "IssueFieldOptionConfiguration",
  "additionalProperties": false,
  "description": "Details of the projects the option is available in.",
  "properties": {
    "attributes": {
      "description": "DEPRECATED",
      "items": {
        "enum": [
          "notSelectable",
          "defaultValue"
        ],
        "type": "string"
      },
      "type": "array",
      "uniqueItems": true
    },
    "scope": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IssueFieldOptionScopeBean"
        }
      ],
      "description": "Defines the projects that the option is available in. If the scope is not defined, then the option is available in all projects."
    }
  },
  "type": "object"
}