SailPoint · Schema
RoleIdentity
An identity assigned to a role.
Access GovernanceComplianceIAMIdentity ManagementIdentity SecuritySecurity
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The identity ID. |
| aliasName | stringnull | The identity alias. |
| name | string | The identity display name. |
| stringnull | The identity email. | |
| roleAssignmentSource | string | How the role was assigned. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RoleIdentity",
"title": "RoleIdentity",
"type": "object",
"description": "An identity assigned to a role.",
"properties": {
"id": {
"type": "string",
"description": "The identity ID.",
"examples": [
"2c9180a46faadee4016fb4e018c20639"
]
},
"aliasName": {
"type": [
"string",
"null"
],
"description": "The identity alias.",
"examples": [
"t.edison"
]
},
"name": {
"type": "string",
"description": "The identity display name.",
"examples": [
"Thomas Edison"
]
},
"email": {
"type": [
"string",
"null"
],
"description": "The identity email.",
"examples": [
"[email protected]"
]
},
"roleAssignmentSource": {
"type": "string",
"description": "How the role was assigned.",
"enum": [
"ROLE_MEMBERSHIP",
"ACCESS_REQUEST"
],
"examples": [
"ROLE_MEMBERSHIP"
]
}
}
}