Atlassian · Schema

CustomFieldContextDefaultValueMultiUserPicker

The default value for a User Picker (multiple) custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-customfieldcontextdefaultvaluemultiuserpicker-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueMultiUserPicker",
  "title": "CustomFieldContextDefaultValueMultiUserPicker",
  "description": "The default value for a User Picker (multiple) custom field.",
  "properties": {
    "accountIds": {
      "description": "The IDs of the default users.",
      "items": {
        "description": "The IDs of the default users.",
        "type": "string"
      },
      "type": "array"
    },
    "contextId": {
      "description": "The ID of the context.",
      "type": "string"
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "accountIds",
    "contextId",
    "type"
  ],
  "type": "object"
}