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