SystemRolePermissionsDto
A built-in system role and the capabilities it grants per entity, as they apply within
this tenant. Mirrors the shape of SodiumHQ.DTOs.Role.RoleDto.Permissions so the two can be
rendered by the same permission grid.
Properties
| Name | Type | Description |
|---|---|---|
| systemRole | enum | Admin StandardUser Viewer |
Admin StandardUser Viewer | ||
| permissions | object | The capabilities granted per entity, already intersected with the tenant's package — |
The capabilities granted per entity, already intersected with the tenant's package — | ||
JSON Example
{
"systemRole": "Admin",
"permissions": {
"Tasks": [
"..."
],
"Users": [
"..."
],
"Clients": [
"..."
],
"Contacts": [
"..."
],
"ClientContacts": [
"..."
]
}
}