Censys · Schema

RSACryptographicKey

RSACryptographicKey schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
exponent string
length integer
modulus string
View JSON Schema on GitHub

JSON Schema

asset-graph-rsacryptographickey-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-rsacryptographickey-schema.json",
  "title": "RSACryptographicKey",
  "description": "RSACryptographicKey schema from Asset Graph API",
  "type": "object",
  "properties": {
    "exponent": {
      "format": "base64",
      "type": "string"
    },
    "length": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "modulus": {
      "format": "base64",
      "type": "string"
    }
  },
  "additionalProperties": false
}