{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.externalConnectors.identity",
"title": "microsoft.graph.externalConnectors.identity",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "identity",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"type": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.externalConnectors.identityType"
},
{
"type": "object",
"nullable": true
}
],
"description": "The type of identity. The possible values are: user or group for Microsoft Entra identities and externalgroup for groups in an external system."
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.externalConnectors.identity"
}