# The PasswordPermissions object

## Attributes

- `access_control_list` (array of object, Public Preview)
  - `all_permissions` (array of object, Public Preview)
    All permissions.
    - `inherited` (boolean, Public Preview)
    - `inherited_from_object` (array of string, Public Preview)
    - `permission_level` (string, Public Preview)
      Permission level
      Possible values: `LEVEL_UNSPECIFIED`, `CAN_USE`
  - `display_name` (string, Public Preview)
    Display name of the user or service principal.
  - `group_name` (string, Public Preview)
    name of the group
  - `service_principal_name` (string, Public Preview)
    Name of the service principal.
  - `user_name` (string, Public Preview)
    name of the user
- `object_id` (string, Public Preview)
- `object_type` (string, Public Preview)

## Example

```json
{
  "access_control_list": [
    {
      "all_permissions": [
        {}
      ],
      "display_name": "string",
      "group_name": "string",
      "service_principal_name": "string",
      "user_name": "string"
    }
  ],
  "object_id": "string",
  "object_type": "string"
}
```


