ForgeRock · Schema

ManagedUserList

Paginated list of managed users

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
result array
resultCount integer Number of results in this page
pagedResultsCookie string Cookie for fetching the next page
totalPagedResultsPolicy string Policy for total result count
totalPagedResults integer Total number of results (-1 if unknown)
remainingPagedResults integer Remaining results after this page
View JSON Schema on GitHub

JSON Schema

forgerock-manageduserlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedUserList",
  "title": "ManagedUserList",
  "type": "object",
  "description": "Paginated list of managed users",
  "properties": {
    "result": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ManagedUser"
      }
    },
    "resultCount": {
      "type": "integer",
      "description": "Number of results in this page"
    },
    "pagedResultsCookie": {
      "type": "string",
      "description": "Cookie for fetching the next page"
    },
    "totalPagedResultsPolicy": {
      "type": "string",
      "description": "Policy for total result count"
    },
    "totalPagedResults": {
      "type": "integer",
      "description": "Total number of results (-1 if unknown)"
    },
    "remainingPagedResults": {
      "type": "integer",
      "description": "Remaining results after this page"
    }
  }
}