{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/ip-intelligence-asn-info-schema.json", "title": "ASNInfo", "description": "Autonomous System Number information", "type": "object", "properties": { "asn": { "type": "string", "description": "ASN identifier", "example": "AS15169" }, "name": { "type": "string", "description": "ASN organization name", "example": "Google LLC" }, "domain": { "type": "string", "description": "Primary domain for the ASN", "example": "google.com" }, "type": { "type": "string", "description": "Type of ASN (hosting, isp, business, etc.)", "example": "hosting" } } }