{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IPIntelligenceResponse", "title": "IPIntelligenceResponse", "type": "object", "description": "Full IP intelligence response", "properties": { "ip_address": { "type": "string", "description": "Analyzed IP address", "example": "8.8.8.8" }, "security": { "$ref": "#/components/schemas/IPSecurityFlags" }, "asn": { "$ref": "#/components/schemas/ASNInfo" }, "company": { "$ref": "#/components/schemas/CompanyBasic" }, "domains": { "type": "array", "description": "Known domains associated with this IP", "items": { "type": "string" }, "example": [ "dns.google" ] }, "location": { "$ref": "#/components/schemas/LocationInfo" }, "timezone": { "$ref": "#/components/schemas/TimezoneInfo" }, "flag": { "$ref": "#/components/schemas/FlagInfo" }, "currency": { "$ref": "#/components/schemas/CurrencyInfo" } } }