{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "sslKey": { "oneOf": [ { "type": "string", "maxLength": 32767, "minLength": 50 }, { "type": "null" } ] }, "sslCert": { "oneOf": [ { "type": "string", "maxLength": 32767, "minLength": 50 }, { "type": "null" } ] }, "sslBundle": { "oneOf": [ { "type": "string", "maxLength": 32767, "minLength": 50 }, { "type": "null" } ] }, "version": { "oneOf": [ { "type": "string", "minLength": 1, "maxLength": 255 }, { "type": "null" } ] }, "domainName": { "type": "string", "maxLength": 45, "minLength": 3 } }, "additionalProperties": false }