Atlassian · Schema

CustomFieldContextDefaultValueMultipleGroupPicker

The default value for a multiple group picker custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-customfieldcontextdefaultvaluemultiplegrouppicker-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueMultipleGroupPicker",
  "title": "CustomFieldContextDefaultValueMultipleGroupPicker",
  "description": "The default value for a multiple group picker custom field.",
  "properties": {
    "contextId": {
      "description": "The ID of the context.",
      "type": "string"
    },
    "groupIds": {
      "description": "The IDs of the default groups.",
      "items": {
        "description": "The IDs of the default groups.",
        "type": "string"
      },
      "type": "array",
      "uniqueItems": true
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "contextId",
    "groupIds",
    "type"
  ],
  "type": "object"
}