{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
        "hostUrl": {
            "title": "Host URL",
            "type": "string",
            "description": "VTiger instance host URL",
            "format": "uri",
            "minLength": 1,
            "examples": [
                "https://openfunction.od2.vtiger.com"
            ]
        },
        "username": {
            "title": "Username",
            "type": "string",
            "description": "VTiger instance username",
            "minLength": 1,
            "examples": [
                "test@openfn.org"
            ]
        },
        "accessToken": {
            "title": "Access Token",
            "type": "string",
            "description": "VTiger instance access token",
            "writeOnly": true,
            "minLength": 1,
            "examples": [
                "@some()!veryHugeToke"
            ]
        }
    },
    "type": "object",
    "additionalProperties": true,
    "required": [
        "hostUrl",
        "username",
        "accessToken"
    ]
}
