Microsoft Graph · Schema
microsoft.graph.security.identityAccounts
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.security.identityAccounts",
"title": "microsoft.graph.security.identityAccounts",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "identityAccounts",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"accounts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.security.account"
},
"description": "Collection of accounts of the identity in different identity providers."
},
"cloudSecurityIdentifier": {
"type": "string",
"description": "The cloud security identifier of the identityAccount.",
"nullable": true
},
"displayName": {
"type": "string",
"description": "The Active Directory display name of the identityAccount.",
"nullable": true
},
"domain": {
"type": "string",
"description": "The Active Directory domain name of the identityAccount.",
"nullable": true
},
"isEnabled": {
"type": "boolean",
"description": "Boolean indicating if the identityAccounts is enabled."
},
"onPremisesSecurityIdentifier": {
"type": "string",
"description": "The on-premises security identifier of the identityAccount.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
},
"discriminator": {
"propertyName": "@odata.type",
"mapping": {
"#microsoft.graph.security.user": "#/components/schemas/microsoft.graph.security.user"
}
}
}
]
}