SailPoint · Schema

RoleMembershipIdentity

An identity for role membership.

Access GovernanceComplianceIAMIdentity ManagementIdentity SecuritySecurity

Properties

Name Type Description
type string The type of the identity.
id string The identity ID.
name string The identity name.
aliasName stringnull The identity alias name.
View JSON Schema on GitHub

JSON Schema

sailpoint-rolemembershipidentity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RoleMembershipIdentity",
  "title": "RoleMembershipIdentity",
  "type": "object",
  "description": "An identity for role membership.",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of the identity.",
      "enum": [
        "IDENTITY"
      ],
      "examples": [
        "IDENTITY"
      ]
    },
    "id": {
      "type": "string",
      "description": "The identity ID.",
      "examples": [
        "2c9180a46faadee4016fb4e018c20639"
      ]
    },
    "name": {
      "type": "string",
      "description": "The identity name.",
      "examples": [
        "Thomas Edison"
      ]
    },
    "aliasName": {
      "type": [
        "string",
        "null"
      ],
      "description": "The identity alias name.",
      "examples": [
        "t.edison"
      ]
    }
  }
}