Kong · Schema

TLSCertificateSensitiveDataAware

A TLS certificate and its associated private key.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen-Source

Properties

Name Type Description
certificate object
key object
View JSON Schema on GitHub

JSON Schema

kong-tlscertificatesensitivedataaware-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TLSCertificateSensitiveDataAware",
  "title": "TLSCertificateSensitiveDataAware",
  "description": "A TLS certificate and its associated private key.",
  "type": "object",
  "properties": {
    "certificate": {
      "$ref": "#/components/schemas/GatewaySecretReferenceOrLiteral"
    },
    "key": {
      "$ref": "#/components/schemas/GatewaySecret"
    }
  },
  "required": [
    "certificate"
  ]
}