SailPoint · Schema

ReviewRecommendation

AI-driven recommendation for the review item.

Access GovernanceComplianceIAMIdentity ManagementIdentity SecuritySecurity

Properties

Name Type Description
recommendation stringnull The recommended decision.
reasons array Reasons for the recommendation.
timestamp stringnull The date the recommendation was generated.
View JSON Schema on GitHub

JSON Schema

sailpoint-reviewrecommendation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReviewRecommendation",
  "title": "ReviewRecommendation",
  "type": [
    "object",
    "null"
  ],
  "description": "AI-driven recommendation for the review item.",
  "properties": {
    "recommendation": {
      "type": [
        "string",
        "null"
      ],
      "description": "The recommended decision.",
      "enum": [
        "APPROVE",
        "REVOKE",
        null
      ],
      "examples": [
        "APPROVE"
      ]
    },
    "reasons": {
      "type": "array",
      "description": "Reasons for the recommendation.",
      "items": {
        "type": "string"
      }
    },
    "timestamp": {
      "type": [
        "string",
        "null"
      ],
      "format": "date-time",
      "description": "The date the recommendation was generated."
    }
  }
}