# The PermissionsResponse object

## Attributes

- `object_id` (string)
- `object_type` (string)
- `access_control_list` (array of object)
  - `user_name` (string)
    name of the user
  - `group_name` (string)
    name of the group
  - `service_principal_name` (string)
    Name of the service principal.
  - `display_name` (string)
    Display name of the user or service principal.
  - `all_permissions` (array of object)
    All permissions.
    - `permission_level` (string)
      Possible values:
      - `CAN_MANAGE`
      - `CAN_RESTART`
      - `CAN_ATTACH_TO`
      - `IS_OWNER`
      - `CAN_MANAGE_RUN`
      - `CAN_VIEW`
      - `CAN_READ`
      - `CAN_RUN`
      - `CAN_EDIT`
      - `CAN_USE`
      - `CAN_MANAGE_STAGING_VERSIONS`
      - `CAN_MANAGE_PRODUCTION_VERSIONS`
      - `CAN_EDIT_METADATA`
      - `CAN_VIEW_METADATA`
      - `CAN_BIND`
      - `CAN_QUERY`
      - `CAN_MONITOR`
      - `CAN_CREATE`
    - `inherited` (boolean)
    - `inherited_from_object` (array of string)

## Example

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


