{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.security.host", "title": "microsoft.graph.security.host", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.security.artifact" }, { "title": "host", "required": [ "@odata.type" ], "type": "object", "properties": { "firstSeenDateTime": { "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", "type": "string", "description": "The first date and time when this host was observed. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.", "format": "date-time", "nullable": true }, "lastSeenDateTime": { "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", "type": "string", "description": "The most recent date and time when this host was observed. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.", "format": "date-time", "nullable": true }, "childHostPairs": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.hostPair" }, "description": "The hostPairs that are resources associated with a host, where that host is the parentHost and has an outgoing pairing to a childHost.", "x-ms-navigationProperty": true }, "components": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.hostComponent" }, "description": "The hostComponents that are associated with this host.", "x-ms-navigationProperty": true }, "cookies": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.hostCookie" }, "description": "The hostCookies that are associated with this host.", "x-ms-navigationProperty": true }, "hostPairs": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.hostPair" }, "description": "The hostPairs that are associated with this host, where this host is either the parentHost or childHost.", "x-ms-navigationProperty": true }, "parentHostPairs": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.hostPair" }, "description": "The hostPairs that are associated with a host, where that host is the childHost and has an incoming pairing with a parentHost.", "x-ms-navigationProperty": true }, "passiveDns": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.passiveDnsRecord" }, "description": "Passive DNS retrieval about this host.", "x-ms-navigationProperty": true }, "passiveDnsReverse": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.passiveDnsRecord" }, "description": "Reverse passive DNS retrieval about this host.", "x-ms-navigationProperty": true }, "ports": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.hostPort" }, "description": "The hostPorts associated with a host.", "x-ms-navigationProperty": true }, "reputation": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.security.hostReputation" }, { "type": "object", "nullable": true } ], "description": "Represents a calculated reputation of this host.", "x-ms-navigationProperty": true }, "sslCertificates": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.hostSslCertificate" }, "description": "The hostSslCertificates that are associated with this host.", "x-ms-navigationProperty": true }, "subdomains": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.subdomain" }, "description": "The subdomains that are associated with this host.", "x-ms-navigationProperty": true }, "trackers": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.hostTracker" }, "description": "The hostTrackers that are associated with this host.", "x-ms-navigationProperty": true }, "whois": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.security.whoisRecord" }, { "type": "object", "nullable": true } ], "description": "The most recent whoisRecord for this host.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string", "default": "#microsoft.graph.security.host" } }, "discriminator": { "propertyName": "@odata.type", "mapping": { "#microsoft.graph.security.hostname": "#/components/schemas/microsoft.graph.security.hostname", "#microsoft.graph.security.ipAddress": "#/components/schemas/microsoft.graph.security.ipAddress" } } } ] }