Microsoft Graph · Schema
windowsMalwareStateCount
Windows Malware State Summary.
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| deviceCount | number | Count of devices with malware detections for this malware State |
| distinctMalwareCount | number | Count of distinct malwares for this malware State. Valid values -2147483648 to 2147483647 |
| lastUpdateDateTime | string | The Timestamp of the last update for the device count in UTC |
| malwareDetectionCount | number | Count of total malware detections for this malware State. Valid values -2147483648 to 2147483647 |
| state | object | |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.windowsMalwareStateCount",
"title": "windowsMalwareStateCount",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"deviceCount": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "Count of devices with malware detections for this malware State",
"format": "int32"
},
"distinctMalwareCount": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "Count of distinct malwares for this malware State. Valid values -2147483648 to 2147483647",
"format": "int32"
},
"lastUpdateDateTime": {
"pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
"type": "string",
"description": "The Timestamp of the last update for the device count in UTC",
"format": "date-time"
},
"malwareDetectionCount": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "Count of total malware detections for this malware State. Valid values -2147483648 to 2147483647",
"format": "int32"
},
"state": {
"$ref": "#/components/schemas/microsoft.graph.windowsMalwareThreatState"
},
"@odata.type": {
"type": "string"
}
},
"description": "Windows Malware State Summary."
}