Censys · Schema

Tls_Chain

Tls_Chain schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
fingerprint_sha256 string SHA 256 fingerprint of the certificate in the certificate chain.
issuer_dn string Distinguished name of the entity that has signed and issued the certificate.
subject_dn string Distinguished name of the entity that the certificate belongs to.
View JSON Schema on GitHub

JSON Schema

platform-tls-chain-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-tls-chain-schema.json",
  "title": "Tls_Chain",
  "description": "Tls_Chain schema from Censys Platform API",
  "type": "object",
  "properties": {
    "fingerprint_sha256": {
      "description": "SHA 256 fingerprint of the certificate in the certificate chain.",
      "format": "hex",
      "type": "string"
    },
    "issuer_dn": {
      "description": "Distinguished name of the entity that has signed and issued the certificate.",
      "type": "string"
    },
    "subject_dn": {
      "description": "Distinguished name of the entity that the certificate belongs to.",
      "type": "string"
    }
  },
  "additionalProperties": false
}