{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.security.ipEvidence", "title": "microsoft.graph.security.ipEvidence", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.security.alertEvidence" }, { "title": "ipEvidence", "required": [ "@odata.type" ], "type": "object", "properties": { "countryLetterCode": { "type": "string", "description": "The two-letter country code according to ISO 3166 format, for example: US, UK, CA, etc.", "nullable": true }, "ipAddress": { "type": "string", "description": "The value of the IP Address, can be either in V4 address or V6 address format.", "nullable": true }, "location": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.security.geoLocation" }, { "type": "object", "nullable": true } ] }, "stream": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.security.stream" }, { "type": "object", "nullable": true } ] }, "@odata.type": { "type": "string", "default": "#microsoft.graph.security.ipEvidence" } } } ], "x-ms-discriminator-value": "#microsoft.graph.security.ipEvidence" }