{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-threatlistitem-schema.json", "title": "ThreatListItem", "description": "ThreatListItem schema from Censys Platform API", "type": "object", "properties": { "added_at": { "description": "The date and time when the threat was added.", "format": "date-time", "type": "string" }, "count": { "description": "Total count of assets affected by this threat.", "format": "int64", "type": "integer" }, "description": { "description": "Detailed description of the threat.", "type": "string" }, "host_count": { "description": "Number of hosts affected by this threat.", "format": "int64", "type": "integer" }, "id": { "description": "Unique identifier of the threat.", "type": "string" }, "name": { "description": "Human-readable name of the threat.", "type": "string" }, "references": { "description": "External reference links for the threat.", "items": { "$ref": "#/components/schemas/ThreatReference" }, "type": [ "array", "null" ] }, "web_count": { "description": "Number of web properties affected by this threat.", "format": "int64", "type": "integer" } }, "required": [ "id", "count", "host_count", "web_count" ], "additionalProperties": false }