{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "SerialisedConfig", "type": "object", "additionalProperties": false, "required": [ "name", "privateKey", "domain", "cnames", "acmeEmail", "remoteUsername" ], "properties": { "name": { "type": "string" }, "privateKey": { "type": "string" }, "publicKey": { "type": "string" }, "domain": { "type": "string" }, "cnames": { "type": "object", "additionalProperties": { "type": "string" } }, "subdomains": { "type": "array", "items": { "type": "string" } }, "acmeEmail": { "type": "string" }, "remoteUsername": { "type": "string" } } }