Censys · Schema

DnsIpResolutionBoundResponse

DnsIpResolutionBoundResponse schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
ip string The IP address that was queried.
next_page_token string A token that can be used to retrieve the next page of records.
records arraynull The list of domain names that resolved to this IP.
total_records integer The number of records that exist in total across all pages.
View JSON Schema on GitHub

JSON Schema

platform-dnsipresolutionboundresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-dnsipresolutionboundresponse-schema.json",
  "title": "DnsIpResolutionBoundResponse",
  "description": "DnsIpResolutionBoundResponse 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/DnsIpResolutionRecord"
      },
      "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
}