Atlassian · Schema

GlobalScopeBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
attributes array Defines the behavior of the option in the global context.If notSelectable is set, the option cannot be set as the field's value. This is useful for archiving an option that has previously been selecte
View JSON Schema on GitHub

JSON Schema

atlassian-globalscopebean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GlobalScopeBean",
  "title": "GlobalScopeBean",
  "additionalProperties": false,
  "properties": {
    "attributes": {
      "description": "Defines the behavior of the option in the global context.If notSelectable is set, the option cannot be set as the field's value. This is useful for archiving an option that has previously been selected but shouldn't be used anymore.If defaultValue is set, the option is selected by default.",
      "items": {
        "enum": [
          "notSelectable",
          "defaultValue"
        ],
        "type": "string"
      },
      "type": "array",
      "uniqueItems": true
    }
  },
  "type": "object"
}