SailPoint · Schema

CertificationIdentitySummary

Summary of the identity being certified.

Access GovernanceComplianceIAMIdentity ManagementIdentity SecuritySecurity

Properties

Name Type Description
id string The identity ID.
name string The identity name.
identityId string The identity unique identifier.
completed boolean Whether all decisions have been made for this identity.
View JSON Schema on GitHub

JSON Schema

sailpoint-certificationidentitysummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CertificationIdentitySummary",
  "title": "CertificationIdentitySummary",
  "type": "object",
  "description": "Summary of the identity being certified.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The identity ID.",
      "examples": [
        "2c9180857182305e0171993735622948"
      ]
    },
    "name": {
      "type": "string",
      "description": "The identity name.",
      "examples": [
        "Alison Ferguso"
      ]
    },
    "identityId": {
      "type": "string",
      "description": "The identity unique identifier.",
      "examples": [
        "ALF01"
      ]
    },
    "completed": {
      "type": "boolean",
      "description": "Whether all decisions have been made for this identity.",
      "examples": [
        false
      ]
    }
  }
}