Microsoft Graph · Schema

vulnerabilityState

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
cve string Common Vulnerabilities and Exposures (CVE) for the vulnerability.
severity string Base Common Vulnerability Scoring System (CVSS) severity score for this vulnerability.
wasRunning boolean Indicates whether the detected vulnerability (file) was running at the time of detection or was the file detected at rest on the disk.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphvulnerabilitystate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.vulnerabilityState",
  "title": "vulnerabilityState",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "cve": {
      "type": "string",
      "description": "Common Vulnerabilities and Exposures (CVE) for the vulnerability.",
      "nullable": true
    },
    "severity": {
      "type": "string",
      "description": "Base Common Vulnerability Scoring System (CVSS) severity score for this vulnerability.",
      "nullable": true
    },
    "wasRunning": {
      "type": "boolean",
      "description": "Indicates whether the detected vulnerability (file) was running at the time of detection or was the file detected at rest on the disk.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}