# The AclItem object

An item representing an ACL rule applied to the given principal (user or group)
 on the associated scope point.

## Attributes

- `principal` (string)
  The principal in which the permission is applied.
- `permission` (string)
  The permission level applied to the principal.
  Possible values: `READ`, `WRITE`, `MANAGE`

## Example

```json
{
  "principal": "string",
  "permission": "string"
}
```


