{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DomainReputation", "title": "DomainReputation", "type": "object", "properties": { "domain": { "type": "string" }, "threat_score": { "type": "integer", "minimum": 0, "maximum": 10 }, "categories": { "type": "array", "items": { "type": "string" } }, "registrar": { "type": "string" }, "created_date": { "type": "string", "format": "date-time" }, "last_seen": { "type": "string", "format": "date-time" } } }