Censys · Schema

GeneralNames

GeneralNames schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
directory_names arraynull The parsed directoryName entries in the GeneralName.
dns_names arraynull The parsed dNSName entries in the GeneralName.
edi_party_names arraynull The parsed eDIPartyName entries in the GeneralName.
email_addresses arraynull The parsed rfc822Name entries in the GeneralName.
ip_addresses arraynull The parsed ipAddress entries in the GeneralName.
other_names arraynull The parsed otherName entries in the GeneralName. An arbitrary binary value identified by an OID.
registered_ids arraynull The parsed registeredID entries in the GeneralName. Stored in dotted-decimal format.
uniform_resource_identifiers arraynull The parsed uniformResourceIdentifier entries in the GeneralName.
View JSON Schema on GitHub

JSON Schema

asset-graph-generalnames-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-generalnames-schema.json",
  "title": "GeneralNames",
  "description": "GeneralNames schema from Asset Graph API",
  "type": "object",
  "properties": {
    "directory_names": {
      "description": "The parsed directoryName entries in the GeneralName.",
      "items": {
        "$ref": "#/components/schemas/DistinguishedName"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "dns_names": {
      "description": "The parsed dNSName entries in the GeneralName.",
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "edi_party_names": {
      "description": "The parsed eDIPartyName entries in the GeneralName.",
      "items": {
        "$ref": "#/components/schemas/EdiPartyName"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "email_addresses": {
      "description": "The parsed rfc822Name entries in the GeneralName.",
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "ip_addresses": {
      "description": "The parsed ipAddress entries in the GeneralName.",
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "other_names": {
      "description": "The parsed otherName entries in the GeneralName. An arbitrary binary value identified by an OID.",
      "items": {
        "$ref": "#/components/schemas/OtherName"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "registered_ids": {
      "description": "The parsed registeredID entries in the GeneralName. Stored in dotted-decimal format.",
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "uniform_resource_identifiers": {
      "description": "The parsed uniformResourceIdentifier entries in the GeneralName.",
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "additionalProperties": false
}