{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/virustotal/refs/heads/main/json-schema/IpAddressObject-schema.json", "title": "IpAddressObject", "description": "An IPv4 or IPv6 address analysed by VirusTotal.", "type": "object", "properties": { "id": { "type": "string", "description": "Object identifier." }, "type": { "type": "string", "description": "Object type discriminator." }, "links": { "type": "object", "description": "Hypermedia links.", "properties": { "self": { "type": "string", "format": "uri" } } }, "attributes": { "type": "object", "description": "Type-specific attributes for IpAddressObject.", "properties": { "as_owner": { "type": "string", "description": "Autonomous System owner.", "example": "GOOGLE" }, "asn": { "type": "integer", "description": "Autonomous System Number.", "example": 15169 }, "continent": { "type": "string", "example": "NA" }, "country": { "type": "string", "example": "US" }, "network": { "type": "string", "description": "CIDR network the IP belongs to.", "example": "10.0.0.0/16" }, "regional_internet_registry": { "type": "string", "example": "ARIN" }, "last_analysis_stats": { "type": "object", "properties": { "harmless": { "type": "integer" }, "malicious": { "type": "integer" }, "suspicious": { "type": "integer" }, "undetected": { "type": "integer" }, "timeout": { "type": "integer" } } }, "last_https_certificate_date": { "type": "integer" }, "last_https_certificate": { "type": "object", "additionalProperties": true }, "reputation": { "type": "integer" }, "total_votes": { "type": "object", "properties": { "harmless": { "type": "integer" }, "malicious": { "type": "integer" } } }, "tags": { "type": "array", "items": { "type": "string" } }, "whois": { "type": "string" } } }, "relationships": { "type": "object", "description": "Pre-expanded relationships, keyed by relationship name.", "additionalProperties": true } }, "required": [ "id", "type", "attributes" ] }