Censys · Schema

Spice

Spice schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
major_version integer
minor_version integer
tls_only boolean
x509_public_key string
View JSON Schema on GitHub

JSON Schema

platform-spice-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-spice-schema.json",
  "title": "Spice",
  "description": "Spice schema from Censys Platform API",
  "type": "object",
  "properties": {
    "major_version": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "minor_version": {
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "tls_only": {
      "type": "boolean"
    },
    "x509_public_key": {
      "format": "base64",
      "type": "string"
    }
  },
  "additionalProperties": false
}