{ "$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" }