{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
        "hostUrl": {
            "title": "Host URL",
            "type": "string",
            "description": "The OCL API URL",
            "default": "https://api.openconceptlab.org/",
            "format": "uri",
            "minLength": 1,
            "examples": [
                "https://api.openconceptlab.org/"
            ]
        },
        "username": {
            "title": "Username",
            "type": "string",
            "description": "The username to log in to OCL",
            "minLength": 1,
            "examples": [
                "username"
            ]
        },
        "password": {
            "title": "Password",
            "type": "string",
            "description": "The password to log in to OCL",
            "writeOnly": true,
            "minLength": 1,
            "examples": [
                "supersecretpassword"
            ]
        }
    },
    "type": "object",
    "additionalProperties": true,
    "required": [
        "hostUrl",
        "username",
        "password"
    ]
}