Censys · Schema

Ssh_ServerHostKey

Ssh_ServerHostKey schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
certkey_public_key string
dsa_public_key object
ecdsa_public_key object
ed25519_public_key object
fingerprint_sha256 string
rsa_public_key object
View JSON Schema on GitHub

JSON Schema

platform-ssh-serverhostkey-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-ssh-serverhostkey-schema.json",
  "title": "Ssh_ServerHostKey",
  "description": "Ssh_ServerHostKey schema from Censys Platform API",
  "type": "object",
  "properties": {
    "certkey_public_key": {
      "format": "utf8",
      "type": "string"
    },
    "dsa_public_key": {
      "$ref": "#/components/schemas/DSACryptographicKey"
    },
    "ecdsa_public_key": {
      "$ref": "#/components/schemas/ECDSACryptographicKey"
    },
    "ed25519_public_key": {
      "$ref": "#/components/schemas/ED25519CryptographicKey"
    },
    "fingerprint_sha256": {
      "format": "hex",
      "type": "string"
    },
    "rsa_public_key": {
      "$ref": "#/components/schemas/RSACryptographicKey"
    }
  },
  "additionalProperties": false
}