Censys · JSON Structure

Platform Signature Structure

Signature schema from Censys Platform API

Type: object Properties: 4
SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Signature is a JSON Structure definition published by Censys, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

self_signed signature_algorithm valid value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-structure/platform-signature-structure.json",
  "name": "Signature",
  "description": "Signature schema from Censys Platform API",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "self_signed": {
      "type": "boolean",
      "description": "Whether the certificate was signed by its own key."
    },
    "signature_algorithm": {
      "$ref": "#/components/schemas/KeyAlgorithm"
    },
    "valid": {
      "type": "boolean",
      "description": "Whether the signature is valid."
    },
    "value": {
      "type": "string",
      "description": "Contents of the signature."
    }
  }
}