SailPoint · Schema

IdentityReference

Reference to an identity.

Access GovernanceComplianceIAMIdentity ManagementIdentity SecuritySecurity

Properties

Name Type Description
type string The type of the referenced object.
id string The identity ID.
name string Human-readable display name of the identity.
View JSON Schema on GitHub

JSON Schema

sailpoint-identityreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IdentityReference",
  "title": "IdentityReference",
  "type": [
    "object",
    "null"
  ],
  "description": "Reference to an identity.",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of the referenced object.",
      "enum": [
        "IDENTITY"
      ],
      "examples": [
        "IDENTITY"
      ]
    },
    "id": {
      "type": "string",
      "description": "The identity ID.",
      "examples": [
        "2c9180a46faadee4016fb4e018c20639"
      ]
    },
    "name": {
      "type": "string",
      "description": "Human-readable display name of the identity.",
      "examples": [
        "Thomas Edison"
      ]
    }
  }
}