{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/custom-workflow-actions-api-field-option-structure.json", "name": "FieldOption", "description": "An option for an enumeration field", "type": "object", "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": "int32", "description": "Order in which to display the option", "example": 100 } }, "required": [ "label", "value" ] }