Microsoft Defender · Schema

IpAddress

An IP address associated with a machine.

Properties

Name Type Description
ipAddress string The IP address.
macAddress string The MAC address.
type string The type of IP address.
operationalStatus string The operational status of the network adapter.
View JSON Schema on GitHub

JSON Schema

microsoft-defender-ipaddress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IpAddress",
  "title": "IpAddress",
  "type": "object",
  "description": "An IP address associated with a machine.",
  "properties": {
    "ipAddress": {
      "type": "string",
      "description": "The IP address."
    },
    "macAddress": {
      "type": "string",
      "description": "The MAC address."
    },
    "type": {
      "type": "string",
      "description": "The type of IP address."
    },
    "operationalStatus": {
      "type": "string",
      "description": "The operational status of the network adapter."
    }
  }
}