ForgeRock · Schema

EntryQueryResult

Generic HDAP query result

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-entryqueryresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntryQueryResult",
  "title": "EntryQueryResult",
  "type": "object",
  "description": "Generic HDAP query result",
  "properties": {
    "result": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "_id": {
            "type": "string"
          },
          "_rev": {
            "type": "string"
          }
        },
        "additionalProperties": true
      }
    },
    "resultCount": {
      "type": "integer"
    },
    "pagedResultsCookie": {
      "type": "string"
    },
    "totalPagedResults": {
      "type": "integer"
    }
  }
}