Censys · Schema

ZLint

ZLint schema from Asset Graph API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
errors_present boolean Whether the certificate's attributes triggered any error lints for non-conformance to the X.509 standard.
failed_lints arraynull A list of lint names which failed, if applicable.
fatals_present boolean Whether the certificate's attributes triggered any fatal lints for non-conformance to the X.509 standard.
notices_present boolean Whether the certificate's attributes triggered any notice lints for non-conformance to the X.509 standard.
timestamp string An RFC-3339-formated timestamp indicating when the certificate was linted.
version integer The version of Zlint used to lint the certificate.
warnings_present boolean Whether the certificate's attributes triggered any warning lints for non-conformance to the X.509 standard.
View JSON Schema on GitHub

JSON Schema

asset-graph-zlint-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-zlint-schema.json",
  "title": "ZLint",
  "description": "ZLint schema from Asset Graph API",
  "type": "object",
  "properties": {
    "errors_present": {
      "description": "Whether the certificate's attributes triggered any error lints for non-conformance to the X.509 standard.",
      "type": "boolean"
    },
    "failed_lints": {
      "description": "A list of lint names which failed, if applicable.",
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "fatals_present": {
      "description": "Whether the certificate's attributes triggered any fatal lints for non-conformance to the X.509 standard.",
      "type": "boolean"
    },
    "notices_present": {
      "description": "Whether the certificate's attributes triggered any notice lints for non-conformance to the X.509 standard.",
      "type": "boolean"
    },
    "timestamp": {
      "description": "An RFC-3339-formated timestamp indicating when the certificate was linted.",
      "type": "string"
    },
    "version": {
      "description": "The version of Zlint used to lint the certificate.",
      "format": "int64",
      "type": "integer"
    },
    "warnings_present": {
      "description": "Whether the certificate's attributes triggered any warning lints for non-conformance to the X.509 standard.",
      "type": "boolean"
    }
  },
  "additionalProperties": false
}