Atlassian · Schema

ProjectScopeBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
attributes array Defines the behavior of the option in the project.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 s
id integer The ID of the project that the option's behavior applies to.
View JSON Schema on GitHub

JSON Schema

atlassian-projectscopebean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectScopeBean",
  "title": "ProjectScopeBean",
  "additionalProperties": false,
  "properties": {
    "attributes": {
      "description": "Defines the behavior of the option in the project.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
    },
    "id": {
      "description": "The ID of the project that the option's behavior applies to.",
      "format": "int64",
      "type": "integer"
    }
  },
  "type": "object"
}