Atlassian · Schema

CustomFieldContextSingleUserPickerDefaults

Defaults for a User Picker (single) custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
accountId string The ID of the default user.
contextId string The ID of the context.
type string
userFilter object
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextsingleuserpickerdefaults-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextSingleUserPickerDefaults",
  "title": "CustomFieldContextSingleUserPickerDefaults",
  "description": "Defaults for a User Picker (single) custom field.",
  "properties": {
    "accountId": {
      "description": "The ID of the default user.",
      "type": "string"
    },
    "contextId": {
      "description": "The ID of the context.",
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "userFilter": {
      "$ref": "#/components/schemas/UserFilter"
    }
  },
  "required": [
    "accountId",
    "contextId",
    "type",
    "userFilter"
  ],
  "type": "object"
}