Atlassian · Schema

CustomFieldContextDefaultValueForgeMultiUserField

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