{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/platform-dnsnameresolutionrangeresponse-structure.json", "name": "DnsNameResolutionRangeResponse", "description": "DnsNameResolutionRangeResponse schema from Censys Platform API", "type": "object", "required": [ "name", "next_page_token", "records", "total_records" ], "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The domain name that was queried." }, "next_page_token": { "type": "string", "description": "A token that can be used to retrieve the next page of records." }, "records": { "type": [ "array", "null" ], "description": "The list of DNS observation windows.", "items": { "$ref": "#/components/schemas/DnsResolutionRangeRecord" } }, "total_records": { "type": "int64", "description": "The number of records that exist in total across all pages." } } }