{ "type": "object", "description": "An option for an enumeration field", "properties": { "label": { "type": "string", "description": "Display label for the option", "example": "Example Record" }, "value": { "type": "string", "description": "The value of the option", "example": "example-value" }, "displayOrder": { "type": "integer", "description": "Order in which to display the option", "example": 100 } }, "required": [ "label", "value" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "FieldOption" }