Microsoft Graph · Schema

malwareState

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
category string Provider-generated malware category (for example, trojan, ransomware, etc.).
family string Provider-generated malware family (for example, 'wannacry,' 'notpetya,' etc.).
name string Provider-generated malware variant name (for example, Trojan:Win32/Powessere.H).
severity string Provider-determined severity of this malware.
wasRunning boolean Indicates whether the detected file (malware/vulnerability) was running at the time of detection or was detected at rest on the disk.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphmalwarestate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.malwareState",
  "title": "malwareState",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "category": {
      "type": "string",
      "description": "Provider-generated malware category (for example, trojan, ransomware, etc.).",
      "nullable": true
    },
    "family": {
      "type": "string",
      "description": "Provider-generated malware family (for example, 'wannacry,' 'notpetya,' etc.).",
      "nullable": true
    },
    "name": {
      "type": "string",
      "description": "Provider-generated malware variant name (for example, Trojan:Win32/Powessere.H).",
      "nullable": true
    },
    "severity": {
      "type": "string",
      "description": "Provider-determined severity of this malware.",
      "nullable": true
    },
    "wasRunning": {
      "type": "boolean",
      "description": "Indicates whether the detected file (malware/vulnerability) was running at the time of detection or was detected at rest on the disk.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}