Microsoft Graph · Schema

microsoft.graph.security.nicEvidence

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecuritynicevidence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.security.nicEvidence",
  "title": "microsoft.graph.security.nicEvidence",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.security.alertEvidence"
    },
    {
      "title": "nicEvidence",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "ipAddress": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.security.ipEvidence"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The current IP address of the NIC."
        },
        "macAddress": {
          "type": "string",
          "description": "The MAC address of the NIC.",
          "nullable": true
        },
        "vlans": {
          "type": "array",
          "items": {
            "type": "string",
            "nullable": true
          },
          "description": "The current virtual local area networks of the NIC."
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.security.nicEvidence"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.security.nicEvidence"
}