Censys · Schema

Signature

Signature schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
self_signed boolean Whether the certificate was signed by its own key.
signature_algorithm object
valid boolean Whether the signature is valid.
value string Contents of the signature.
View JSON Schema on GitHub

JSON Schema

asset-graph-signature-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-signature-schema.json",
  "title": "Signature",
  "description": "Signature schema from Asset Graph API",
  "type": "object",
  "properties": {
    "self_signed": {
      "description": "Whether the certificate was signed by its own key.",
      "type": "boolean"
    },
    "signature_algorithm": {
      "$ref": "#/components/schemas/KeyAlgorithm"
    },
    "valid": {
      "description": "Whether the signature is valid.",
      "type": "boolean"
    },
    "value": {
      "description": "Contents of the signature.",
      "format": "hex",
      "type": "string"
    }
  },
  "additionalProperties": false
}