OrganizationScopesDto

OrganizationScopesDto
OrganizationScopesDto

The allowed organization scopes of access.

JSON Example
{
    "keptInToken": [
        "string"
    ],
    "allRoles": false,
    "permissions": [
        {
            "resources": [
                "string"
            ],
            "permissionId": "string"
        }
    ],
    "allPermissions": false,
    "roles": [
        {
            "name": "string",
            "resource": "string"
        }
    ]
}
array of string
keptInToken
Optional

Allowed scope type for the token

Possible values are : ROLES, PERMISSIONS,
boolean
allRoles
Optional

If set to true, the client will be scoped to all available roles.

  1. This flag allows to add all client/user's permissions to the access token.
  2. Role names must be null/empty if all roles is true
permissions
Optional

List of allowed permissions applicable to the scope

boolean
allPermissions
Optional

If set to true, the client will be scoped to all available permissions.

  1. This flag allows to add all client/user's permissions to the access token.
  2. Permissions must be null/empty if all permissions is true
array of BaseScope
roles
Optional

List of allowed roles applicable to the scope

Property Of