{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.scopeBase",
"title": "scopeBase",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"identity": {
"type": "string",
"description": "The identifier for the scope. This could be a user ID, group ID, or a keyword like 'All' for tenant scope.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
},
"discriminator": {
"propertyName": "@odata.type",
"mapping": {
"#microsoft.graph.groupScope": "#/components/schemas/microsoft.graph.groupScope",
"#microsoft.graph.tenantScope": "#/components/schemas/microsoft.graph.tenantScope",
"#microsoft.graph.userScope": "#/components/schemas/microsoft.graph.userScope"
}
}
}