Atlassian · Schema

CustomFieldContextDefaultValueSingleGroupPicker

The default value for a group picker custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
contextId string The ID of the context.
groupId string The ID of the the default group.
type string
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextdefaultvaluesinglegrouppicker-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueSingleGroupPicker",
  "title": "CustomFieldContextDefaultValueSingleGroupPicker",
  "description": "The default value for a group picker custom field.",
  "properties": {
    "contextId": {
      "description": "The ID of the context.",
      "type": "string"
    },
    "groupId": {
      "description": "The ID of the the default group.",
      "type": "string"
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "contextId",
    "groupId",
    "type"
  ],
  "type": "object"
}