{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
        "servername": {
            "title": "Server Name",
            "type": "string",
            "description": "Your Surveycto server name also known as instance name",
            "minLength": 1,
            "examples": [
                "openfn_test"
            ]
        },
        "username": {
            "title": "Username",
            "type": "string",
            "description": "Your Surveycto server username",
            "minLength": 1,
            "examples": [
                "someusername"
            ]
        },
        "password": {
            "title": "Password",
            "type": "string",
            "description": "Your Surveycto server password",
            "writeOnly": true,
            "minLength": 1,
            "examples": [
                "@some(%)!Password"
            ]
        },
        "apiVersion": {
            "title": "API Version",
            "type": "string",
            "description": "The API version",
            "default": "v1",
            "examples": [
                "v1",
                "v2"
            ]
        }
    },
    "type": "object",
    "additionalProperties": true,
    "required": [
        "servername",
        "username",
        "password"
    ]
}