{ "$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" } } }