{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
        "account": {
            "title": "Account",
            "type": "string",
            "description": "CartoDB account name",
            "minLength": 1,
            "examples": [
                "openfn"
            ]
        },
        "apiKey": {
            "title": "API Key",
            "type": "string",
            "description": "CartoDB API key",
            "writeOnly": true,
            "minLength": 1,
            "examples": [
                "longsecretkey"
            ]
        }
    },
    "type": "object",
    "additionalProperties": true,
    "required": [
        "account",
        "apiKey"
    ]
}
