{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomFieldContextDefaultValueMultipleVersionPicker", "title": "CustomFieldContextDefaultValueMultipleVersionPicker", "description": "The default value for a multiple version picker custom field.", "properties": { "type": { "type": "string" }, "versionIds": { "description": "The IDs of the default versions.", "items": { "description": "The IDs of the default versions.", "type": "string" }, "type": "array", "uniqueItems": true }, "versionOrder": { "description": "The order the pickable versions are displayed in. If not provided, the released-first order is used. Available version orders are `\"releasedFirst\"` and `\"unreleasedFirst\"`.", "type": "string" } }, "required": [ "type", "versionIds" ], "type": "object" }