{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.security.hostReputation", "title": "microsoft.graph.security.hostReputation", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "hostReputation", "required": [ "@odata.type" ], "type": "object", "properties": { "classification": { "$ref": "#/components/schemas/microsoft.graph.security.hostReputationClassification" }, "rules": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.security.hostReputationRule" }, "description": "A collection of rules that have been used to calculate the classification and score." }, "score": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "The calculated score (0-100) of the requested host. A higher value indicates that this host is more likely to be suspicious or malicious.", "format": "int32" }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.security.hostReputation" }