{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-dnsipresolutionrangeresponse-schema.json",
"title": "DnsIpResolutionRangeResponse",
"description": "DnsIpResolutionRangeResponse schema from Censys Platform API",
"type": "object",
"properties": {
"ip": {
"description": "The IP address that was queried.",
"type": "string"
},
"next_page_token": {
"description": "A token that can be used to retrieve the next page of records.",
"type": "string"
},
"records": {
"description": "The list of domain names that resolved to this IP.",
"items": {
"$ref": "#/components/schemas/DnsIpResolutionRangeRecord"
},
"type": [
"array",
"null"
]
},
"total_records": {
"description": "The number of records that exist in total across all pages.",
"format": "int64",
"type": "integer"
}
},
"required": [
"ip",
"next_page_token",
"records",
"total_records"
],
"additionalProperties": false
}