# The PrivilegeAssignment object

## Attributes

- `principal` (string)
  The principal (user email address or group name).
   For deleted principals, `principal` is empty while `principal_id` is populated.
- `privileges` (array of string)
  The privileges assigned to the principal.
  Example: `SELECT`

## Example

```json
{
  "principal": "string",
  "privileges": "SELECT"
}
```


