The default value for a version picker custom field.
CodeCollaborationPlatformProductivitySoftware Development
Properties
Name
Type
Description
type
string
versionId
string
The ID of the default version.
versionOrder
string
The order the pickable versions are displayed in. If not provided, the released-first order is used. Available version orders are `"releasedFirst"` and `"unreleasedFirst"`.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CustomFieldContextDefaultValueSingleVersionPicker",
"title": "CustomFieldContextDefaultValueSingleVersionPicker",
"description": "The default value for a version picker custom field.",
"properties": {
"type": {
"type": "string"
},
"versionId": {
"description": "The ID of the default version.",
"type": "string"
},
"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",
"versionId"
],
"type": "object"
}