Microsoft Graph · Schema
windowsMalwareSeverityCount
Windows Malware Severity Count Summary
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| 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 WindowsMalwareSeverityCount in UTC |
| malwareDetectionCount | number | Count of threats detections for this malware severity. Valid values -2147483648 to 2147483647 |
| severity | object | |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.windowsMalwareSeverityCount",
"title": "windowsMalwareSeverityCount",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"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 WindowsMalwareSeverityCount in UTC",
"format": "date-time"
},
"malwareDetectionCount": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "Count of threats detections for this malware severity. Valid values -2147483648 to 2147483647",
"format": "int32"
},
"severity": {
"$ref": "#/components/schemas/microsoft.graph.windowsMalwareSeverity"
},
"@odata.type": {
"type": "string"
}
},
"description": "Windows Malware Severity Count Summary"
}