{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CertificateInput", "title": "CertificateInput", "type": "object", "required": [ "cert", "key" ], "properties": { "cert": { "type": "string" }, "key": { "type": "string" }, "snis": { "type": "array", "items": { "type": "string" } } } }