Atlassian · Schema

CustomFieldContextDefaultValueMultipleVersionPicker

The default value for a multiple version picker custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
versionIds array The IDs of the default versions.
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"`.
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextdefaultvaluemultipleversionpicker-schema.json Raw ↑
{
  "$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"
}