{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomFieldContextDefaultValueCascadingOption", "title": "CustomFieldContextDefaultValueCascadingOption", "description": "The default value for a cascading select custom field.", "properties": { "cascadingOptionId": { "description": "The ID of the default cascading option.", "type": "string" }, "contextId": { "description": "The ID of the context.", "type": "string" }, "optionId": { "description": "The ID of the default option.", "type": "string" }, "type": { "type": "string" } }, "required": [ "contextId", "optionId", "type" ], "type": "object" }