{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ClientSigningKey", "title": "ClientSigningKey", "type": "object", "additionalProperties": true, "properties": { "pkcs7": { "type": "string", "description": "Signing certificate public key and chain in PKCS#7 (.P7B) format.", "default": "" }, "cert": { "type": "string", "description": "Signing certificate public key in X.509 (.CER) format.", "default": "" }, "subject": { "type": "string", "description": "Subject name for this certificate in the format `/CN={domain}`.", "default": "" } } }