Censys · Schema

Dns_ResourceRecord

Dns_ResourceRecord schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
name string The Fully Qualified Domain Name (FQDN) this RR is for.
response string The RDATA field of the RR.
type string An enumerated field indicating what type of data is in the "services.dns.additionals.response" field. For example, "A" signifies that the value in "services.dns.additionals.response" is an IPv4 addres
View JSON Schema on GitHub

JSON Schema

asset-graph-dns-resourcerecord-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/asset-graph-dns-resourcerecord-schema.json",
  "title": "Dns_ResourceRecord",
  "description": "Dns_ResourceRecord schema from Asset Graph API",
  "type": "object",
  "properties": {
    "name": {
      "description": "The Fully Qualified Domain Name (FQDN) this RR is for.",
      "type": "string"
    },
    "response": {
      "description": "The RDATA field of the RR.",
      "type": "string"
    },
    "type": {
      "description": "An enumerated field indicating what type of data is in the \"services.dns.additionals.response\" field. For example, \"A\" signifies that the value in \"services.dns.additionals.response\" is an IPv4 address for the FQDN in \"services.dns.additionals.name\".",
      "enum": [
        "",
        "a",
        "txt",
        "ns"
      ],
      "type": "string"
    }
  },
  "additionalProperties": false
}