{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.deviceCompliancePolicyState", "title": "microsoft.graph.deviceCompliancePolicyState", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "deviceCompliancePolicyState", "required": [ "@odata.type" ], "type": "object", "properties": { "displayName": { "type": "string", "description": "The name of the policy for this policyBase", "nullable": true }, "platformType": { "$ref": "#/components/schemas/microsoft.graph.policyPlatformType" }, "settingCount": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "Count of how many setting a policy holds", "format": "int32" }, "settingStates": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.deviceCompliancePolicySettingState" } }, "state": { "$ref": "#/components/schemas/microsoft.graph.complianceStatus" }, "version": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "The version of the policy", "format": "int32" }, "@odata.type": { "type": "string" } }, "description": "Device Compliance Policy State for a given device." } ], "x-ms-discriminator-value": "#microsoft.graph.deviceCompliancePolicyState" }