{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "title": "OBS Options",
    "type": "object",
    "properties": {
        "host": {
            "type": "string",
            "ui:title": "Host"
        },
        "port": {
            "type": "integer",
            "ui:title": "Port"
        },
        "password": {
            "type": "string",
            "ui:title": "Password"
        }
    },
    "required": [
        "host",
        "port"
    ],
    "additionalProperties": false
}
