{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TLSTrustBundleConfig", "title": "TLSTrustBundleConfig", "type": "object", "properties": { "trusted_ca": { "description": "PEM-encoded list of trusted CA certificates used to verify client certificates.\nCan be a literal PEM string or a vault reference.\n", "type": "string", "minLength": 1, "x-expression": { "type": "string", "fields": [ "vault" ] } } }, "required": [ "trusted_ca" ] }