Censys · Schema

ValidityPeriod

ValidityPeriod schema from Censys Platform API

SecurityInternet IntelligenceAttack Surface ManagementThreat HuntingCyber Threat IntelligenceOSINTInternet ScanningCertificatesAsset Discovery

Properties

Name Type Description
length_seconds integer The duration of the certificate's validity period, in seconds.
not_after string An RFC-3339-formatted timestamp after which the certificate is no longer valid.
not_before string An RFC-3339-formatted timestamp before which the certificate is not valid.
View JSON Schema on GitHub

JSON Schema

platform-validityperiod-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-validityperiod-schema.json",
  "title": "ValidityPeriod",
  "description": "ValidityPeriod schema from Censys Platform API",
  "type": "object",
  "properties": {
    "length_seconds": {
      "description": "The duration of the certificate's validity period, in seconds.",
      "format": "int64",
      "type": "integer"
    },
    "not_after": {
      "description": "An RFC-3339-formatted timestamp after which the certificate is no longer valid.",
      "type": "string"
    },
    "not_before": {
      "description": "An RFC-3339-formatted timestamp before which the certificate is not valid.",
      "type": "string"
    }
  },
  "additionalProperties": false
}