ForgeRock · Schema

QueryResult

CREST query result

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

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

JSON Schema

forgerock-queryresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QueryResult",
  "title": "QueryResult",
  "type": "object",
  "description": "CREST query result",
  "properties": {
    "result": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ManagedObject"
      }
    },
    "resultCount": {
      "type": "integer"
    },
    "pagedResultsCookie": {
      "type": "string"
    },
    "totalPagedResultsPolicy": {
      "type": "string"
    },
    "totalPagedResults": {
      "type": "integer"
    },
    "remainingPagedResults": {
      "type": "integer"
    }
  }
}