Microsoft Graph · Schema
appIdentity
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| appId | string | Refers to the unique ID representing application in Microsoft Entra ID. |
| displayName | string | Refers to the application name displayed in the Microsoft Entra admin center. |
| servicePrincipalId | string | Refers to the unique ID for the service principal in Microsoft Entra ID. |
| servicePrincipalName | string | Refers to the Service Principal Name is the Application name in the tenant. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.appIdentity",
"title": "appIdentity",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"appId": {
"type": "string",
"description": "Refers to the unique ID representing application in Microsoft Entra ID.",
"nullable": true
},
"displayName": {
"type": "string",
"description": "Refers to the application name displayed in the Microsoft Entra admin center.",
"nullable": true
},
"servicePrincipalId": {
"type": "string",
"description": "Refers to the unique ID for the service principal in Microsoft Entra ID.",
"nullable": true
},
"servicePrincipalName": {
"type": "string",
"description": "Refers to the Service Principal Name is the Application name in the tenant.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}