{ "$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" } } }