{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomFieldContextDefaultValueMultipleOption", "title": "CustomFieldContextDefaultValueMultipleOption", "description": "The default value for a multi-select custom field.", "properties": { "contextId": { "description": "The ID of the context.", "type": "string" }, "optionIds": { "description": "The list of IDs of the default options.", "items": { "description": "The list of IDs of the default options.", "type": "string" }, "type": "array" }, "type": { "type": "string" } }, "required": [ "contextId", "optionIds", "type" ], "type": "object" }