Censys · Schema

KeyAlgorithm

KeyAlgorithm schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
name string Name of public key type, such as RSA or ECDSA. Information specific to the key type is available in the named sub-record.
oid string
View JSON Schema on GitHub

JSON Schema

asset-graph-keyalgorithm-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-keyalgorithm-schema.json",
  "title": "KeyAlgorithm",
  "description": "KeyAlgorithm schema from Asset Graph API",
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of public key type, such as RSA or ECDSA. Information specific to the key type is available in the named sub-record.",
      "type": "string"
    },
    "oid": {
      "type": "string"
    }
  },
  "additionalProperties": false
}