{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EnumOptionRequest", "title": "EnumOptionRequest", "type": "object", "properties": { "name": { "type": "string", "example": "Low" }, "color": { "type": "string", "example": "blue" }, "enabled": { "type": "boolean", "example": true }, "insert_before": { "type": "string", "description": "An existing enum option within this custom field before which the new enum option should be inserted." }, "insert_after": { "type": "string", "description": "An existing enum option within this custom field after which the new enum option should be inserted." } } }