Atlassian · Schema

PermissionSubjectWithGroupId

The user or group that the permission applies to.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
identifier string for `type=user`, identifier should be user's accountId or `anonymous` for anonymous users for `type=group`, identifier should be ID of the group
View JSON Schema on GitHub

JSON Schema

atlassian-confluence-content-permission-subject-with-group-id-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PermissionSubjectWithGroupId",
  "type": "object",
  "description": "The user or group that the permission applies to.",
  "properties": {
    "type": {
      "type": "string"
    },
    "identifier": {
      "type": "string",
      "description": "for `type=user`, identifier should be user's accountId or `anonymous` for anonymous users\n\nfor `type=group`, identifier should be ID of the group"
    }
  }
}