ForgeRock · Schema

RecommendationList

Entitlement recommendations

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

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

JSON Schema

forgerock-recommendationlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecommendationList",
  "title": "RecommendationList",
  "type": "object",
  "description": "Entitlement recommendations",
  "properties": {
    "result": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "userId": {
            "type": "string"
          },
          "userName": {
            "type": "string"
          },
          "entitlementId": {
            "type": "string"
          },
          "entitlementName": {
            "type": "string"
          },
          "application": {
            "type": "string"
          },
          "confidenceScore": {
            "type": "number",
            "description": "Predicted confidence score"
          },
          "drivingAttributes": {
            "type": "object",
            "additionalProperties": {
              "type": "string"
            }
          }
        }
      }
    },
    "totalResults": {
      "type": "integer"
    }
  }
}