{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/asset-graph-riskmetadata-schema.json", "title": "RiskMetadata", "description": "RiskMetadata schema from Asset Graph API", "type": "object", "properties": { "$schema": { "description": "A URL to the JSON Schema for this object.", "examples": [ "https://graph.data.censys.io/schemas/RiskMetadata.json" ], "format": "uri", "readOnly": true, "type": "string" }, "added_at": { "description": "Time data was ingested", "format": "date-time", "type": "string" }, "description": { "description": "Description of the risk", "type": "string" }, "name": { "description": "Name of the risk", "type": "string" }, "references": { "description": "Reference information for data returned", "items": { "$ref": "#/components/schemas/Reference" }, "type": [ "array", "null" ] } }, "required": [ "description", "references", "name", "added_at" ], "additionalProperties": false }