{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "nameColumn": { "type": "string" }, "descriptionColumn": { "type": "string" }, "csv": { "type": "string" }, "makeUniqueKeySecret": { "type": "boolean" }, "email": { "type": "string", "format": "email", "maxLength": 1024 }, "callbackUrl": { "type": "string", "format": "uri", "maxLength": 1024 } }, "additionalProperties": false, "required": [ "csv" ] }