Atlassian · Schema

CustomFieldContextDefaultValueMultipleOption

The default value for a multi-select custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
contextId string The ID of the context.
optionIds array The list of IDs of the default options.
type string
View JSON Schema on GitHub

JSON Schema

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