Censys · Schema

EcdsaPublicKey

EcdsaPublicKey schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
b string
curve string
gx string
gy string
length integer
n string
p string
pub string
x string
y string
View JSON Schema on GitHub

JSON Schema

platform-ecdsapublickey-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-ecdsapublickey-schema.json",
  "title": "EcdsaPublicKey",
  "description": "EcdsaPublicKey schema from Censys Platform API",
  "type": "object",
  "properties": {
    "b": {
      "format": "hex",
      "type": "string"
    },
    "curve": {
      "type": "string"
    },
    "gx": {
      "format": "hex",
      "type": "string"
    },
    "gy": {
      "format": "hex",
      "type": "string"
    },
    "length": {
      "format": "int64",
      "type": "integer"
    },
    "n": {
      "format": "hex",
      "type": "string"
    },
    "p": {
      "format": "hex",
      "type": "string"
    },
    "pub": {
      "format": "hex",
      "type": "string"
    },
    "x": {
      "format": "hex",
      "type": "string"
    },
    "y": {
      "format": "hex",
      "type": "string"
    }
  },
  "additionalProperties": false
}