Atlassian · Schema

PermissionHolder

Details of a user, group, field, or project role that holds a permission. See [Holder object](../api-group-permission-schemes/#holder-object) in *Get all permission schemes* for more information.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
expand string Expand options that include additional permission holder details in the response.
parameter string As a group's name can change, use of `value` is recommended. The identifier associated withthe `type` value that defines the holder of the permission.
type string The type of permission holder.
value string The identifier associated with the `type` value that defines the holder of the permission.
View JSON Schema on GitHub

JSON Schema

atlassian-permissionholder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PermissionHolder",
  "title": "PermissionHolder",
  "additionalProperties": false,
  "description": "Details of a user, group, field, or project role that holds a permission. See [Holder object](../api-group-permission-schemes/#holder-object) in *Get all permission schemes* for more information.",
  "properties": {
    "expand": {
      "description": "Expand options that include additional permission holder details in the response.",
      "readOnly": true,
      "type": "string"
    },
    "parameter": {
      "description": "As a group's name can change, use of `value` is recommended. The identifier associated withthe `type` value that defines the holder of the permission.",
      "type": "string"
    },
    "type": {
      "description": "The type of permission holder.",
      "type": "string"
    },
    "value": {
      "description": "The identifier associated with the `type` value that defines the holder of the permission.",
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}