{
"$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"
}
}