Censys · JSON Structure

Asset Graph Subjectkeyinfo Structure

SubjectKeyInfo schema from Asset Graph API

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

SubjectKeyInfo is a JSON Structure definition published by Censys, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

dsa ecdsa fingerprint_sha256 key_algorithm rsa unrecognized

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/asset-graph-subjectkeyinfo-structure.json",
  "name": "SubjectKeyInfo",
  "description": "SubjectKeyInfo schema from Asset Graph API",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "dsa": {
      "description": "A record containing the public portion of a DSA asymmetric key.",
      "$ref": "#/components/schemas/DsaPublicKey"
    },
    "ecdsa": {
      "description": "A record containing the public portion of an ECDSA asymmetric key.",
      "$ref": "#/components/schemas/EcdsaPublicKey"
    },
    "fingerprint_sha256": {
      "type": "string",
      "description": "The SHA-256 digest of the certificate's DER-encoded SubjectPublicKeyInfo."
    },
    "key_algorithm": {
      "description": "A record containing information about the type of subject key algorithm and any relevant parameters.",
      "$ref": "#/components/schemas/KeyAlgorithm"
    },
    "rsa": {
      "description": "A record containing the public portion of an RSA asymmetric key.",
      "$ref": "#/components/schemas/RsaPublicKey"
    },
    "unrecognized": {
      "description": "A record containing known information about an unrecognized key type.",
      "$ref": "#/components/schemas/UnrecognizedPublicKey"
    }
  }
}