Censys · Schema
ZLint
ZLint schema from Censys Platform 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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-zlint-schema.json",
"title": "ZLint",
"description": "ZLint schema from Censys Platform 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
}