Censys · Schema

DnsNameResolutionBoundResponse

DnsNameResolutionBoundResponse schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
name string The domain name 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 DNS records.
total_records integer The number of records that exist in total across all pages.
View JSON Schema on GitHub

JSON Schema

platform-dnsnameresolutionboundresponse-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-dnsnameresolutionboundresponse-schema.json",
  "title": "DnsNameResolutionBoundResponse",
  "description": "DnsNameResolutionBoundResponse schema from Censys Platform API",
  "type": "object",
  "properties": {
    "name": {
      "description": "The domain name 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 DNS records.",
      "items": {
        "$ref": "#/components/schemas/DnsResolutionRecord"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "total_records": {
      "description": "The number of records that exist in total across all pages.",
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "name",
    "next_page_token",
    "records",
    "total_records"
  ],
  "additionalProperties": false
}