Microsoft Defender · Schema

MachineReference

A reference to a machine affected by a vulnerability.

Properties

Name Type Description
id string The machine ID.
computerDnsName string The fully qualified domain name of the machine.
osPlatform string The operating system platform.
rbacGroupName stringnull The RBAC group name.
View JSON Schema on GitHub

JSON Schema

microsoft-defender-machinereference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MachineReference",
  "title": "MachineReference",
  "type": "object",
  "description": "A reference to a machine affected by a vulnerability.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The machine ID."
    },
    "computerDnsName": {
      "type": "string",
      "description": "The fully qualified domain name of the machine."
    },
    "osPlatform": {
      "type": "string",
      "description": "The operating system platform."
    },
    "rbacGroupName": {
      "type": [
        "string",
        "null"
      ],
      "description": "The RBAC group name."
    }
  }
}