ForgeRock · Schema

ManagedRoleList

Paginated list of managed roles

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
result array
resultCount integer
pagedResultsCookie string
totalPagedResults integer
View JSON Schema on GitHub

JSON Schema

forgerock-managedrolelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedRoleList",
  "title": "ManagedRoleList",
  "type": "object",
  "description": "Paginated list of managed roles",
  "properties": {
    "result": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ManagedRole"
      }
    },
    "resultCount": {
      "type": "integer"
    },
    "pagedResultsCookie": {
      "type": "string"
    },
    "totalPagedResults": {
      "type": "integer"
    }
  }
}