Atlassian · Schema

CustomFieldContextDefaultValueForgeUserField

Defaults for a Forge user 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-customfieldcontextdefaultvalueforgeuserfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueForgeUserField",
  "title": "CustomFieldContextDefaultValueForgeUserField",
  "description": "Defaults for a Forge user 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"
}