Atlassian · Schema

CustomFieldOption

Details of a custom option for a field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
self string The URL of these custom field option details.
value string The value of the custom field option.
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldOption",
  "title": "CustomFieldOption",
  "additionalProperties": false,
  "description": "Details of a custom option for a field.",
  "properties": {
    "self": {
      "description": "The URL of these custom field option details.",
      "format": "uri",
      "readOnly": true,
      "type": "string"
    },
    "value": {
      "description": "The value of the custom field option.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object",
  "xml": {
    "name": "customFieldOption"
  }
}