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