Atlassian · Schema

CustomFieldOptionUpdate

Details of a custom field option for a context.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
disabled boolean Whether the option is disabled.
id string The ID of the custom field option.
value string The value of the custom field option.
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldoptionupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldOptionUpdate",
  "title": "CustomFieldOptionUpdate",
  "additionalProperties": false,
  "description": "Details of a custom field option for a context.",
  "properties": {
    "disabled": {
      "description": "Whether the option is disabled.",
      "type": "boolean"
    },
    "id": {
      "description": "The ID of the custom field option.",
      "type": "string"
    },
    "value": {
      "description": "The value of the custom field option.",
      "type": "string"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}