Microsoft Graph · Schema
controlScore
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| controlCategory | string | Control action category (Identity, Data, Device, Apps, Infrastructure). |
| controlName | string | Control unique name. |
| description | string | Description of the control. |
| score | object | Tenant achieved score for the control (it varies day by day depending on tenant operations on the control). |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.controlScore",
"title": "controlScore",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"controlCategory": {
"type": "string",
"description": "Control action category (Identity, Data, Device, Apps, Infrastructure).",
"nullable": true
},
"controlName": {
"type": "string",
"description": "Control unique name.",
"nullable": true
},
"description": {
"type": "string",
"description": "Description of the control.",
"nullable": true
},
"score": {
"oneOf": [
{
"type": "number",
"format": "double",
"nullable": true
},
{
"type": "string",
"nullable": true
},
{
"$ref": "#/components/schemas/ReferenceNumeric"
}
],
"description": "Tenant achieved score for the control (it varies day by day depending on tenant operations on the control)."
},
"@odata.type": {
"type": "string"
}
}
}