Censys · JSON Structure

Platform Dnsipresolutionboundresponse Structure

DnsIpResolutionBoundResponse schema from Censys Platform API

Type: object Properties: 4 Required: 4
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

DnsIpResolutionBoundResponse is a JSON Structure definition published by Censys, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ip next_page_token records total_records

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/platform-dnsipresolutionboundresponse-structure.json",
  "name": "DnsIpResolutionBoundResponse",
  "description": "DnsIpResolutionBoundResponse schema from Censys Platform API",
  "type": "object",
  "required": [
    "ip",
    "next_page_token",
    "records",
    "total_records"
  ],
  "additionalProperties": false,
  "properties": {
    "ip": {
      "type": "string",
      "description": "The IP address 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 domain names that resolved to this IP.",
      "items": {
        "$ref": "#/components/schemas/DnsIpResolutionRecord"
      }
    },
    "total_records": {
      "type": "int64",
      "description": "The number of records that exist in total across all pages."
    }
  }
}