Kong · Schema

CertificateMetadata

Metadata extracted from a certificate.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
issuer string The issuer of the certificate.
subject string The subject of the certificate.
key_usages array The key usages of the certificate.
expiry integer The expiry date of the certificate as a unix timestamp.
san_names array The Subject Alternative Names (SAN) of the certificate.
dns_names array The DNS names in the certificate SAN.
email_addresses array The email addresses in the certificate SAN.
ip_addresses array The IP addresses in the certificate SAN.
uris array The URIs in the certificate SAN.
sha256_fingerprint string The SHA-256 fingerprint of the certificate.
View JSON Schema on GitHub

JSON Schema

kong-certificatemetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CertificateMetadata",
  "title": "CertificateMetadata",
  "description": "Metadata extracted from a certificate.",
  "type": "object",
  "properties": {
    "issuer": {
      "description": "The issuer of the certificate.",
      "type": "string"
    },
    "subject": {
      "description": "The subject of the certificate.",
      "type": "string"
    },
    "key_usages": {
      "description": "The key usages of the certificate.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "expiry": {
      "description": "The expiry date of the certificate as a unix timestamp.",
      "type": "integer",
      "format": "int64"
    },
    "san_names": {
      "description": "The Subject Alternative Names (SAN) of the certificate.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "dns_names": {
      "description": "The DNS names in the certificate SAN.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "email_addresses": {
      "description": "The email addresses in the certificate SAN.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "ip_addresses": {
      "description": "The IP addresses in the certificate SAN.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "uris": {
      "description": "The URIs in the certificate SAN.",
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      }
    },
    "sha256_fingerprint": {
      "description": "The SHA-256 fingerprint of the certificate.",
      "type": "string"
    }
  }
}