Atlassian · Schema

CustomFieldOptionCreate

Details of a custom field option to create.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
disabled boolean Whether the option is disabled.
optionId string For cascading options, the ID of the custom field object containing the cascading option.
value string The value of the custom field option.
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldoptioncreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldOptionCreate",
  "title": "CustomFieldOptionCreate",
  "additionalProperties": false,
  "description": "Details of a custom field option to create.",
  "properties": {
    "disabled": {
      "description": "Whether the option is disabled.",
      "type": "boolean"
    },
    "optionId": {
      "description": "For cascading options, the ID of the custom field object containing the cascading option.",
      "type": "string"
    },
    "value": {
      "description": "The value of the custom field option.",
      "type": "string"
    }
  },
  "required": [
    "value"
  ],
  "type": "object"
}