{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
        "projectId": {
            "title": "Project ID",
            "type": "string",
            "description": "Your Telerivet project id",
            "minLength": 1,
            "examples": [
                "telerivet_project_id"
            ]
        },
        "apiKey": {
            "title": "API Key",
            "type": "string",
            "description": "Your Telerivet API Key",
            "writeOnly": true,
            "minLength": 1,
            "examples": [
                "telerivet_api_key"
            ]
        }
    },
    "type": "object",
    "additionalProperties": true,
    "required": [
        "projectId",
        "apiKey"
    ]
}
