ForgeRock · Schema

EntitlementUserList

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
result array
totalResults integer
View JSON Schema on GitHub

JSON Schema

forgerock-entitlementuserlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntitlementUserList",
  "title": "EntitlementUserList",
  "type": "object",
  "properties": {
    "result": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "userId": {
            "type": "string"
          },
          "userName": {
            "type": "string"
          },
          "confidenceScore": {
            "type": "number",
            "description": "Confidence score (0-100)"
          },
          "drivingAttributes": {
            "type": "object",
            "description": "Attributes driving the confidence score",
            "additionalProperties": {
              "type": "string"
            }
          }
        }
      }
    },
    "totalResults": {
      "type": "integer"
    }
  }
}