{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "title": "Hyperdeck Options",
    "type": "object",
    "properties": {
        "host": {
            "type": "string",
            "ui:title": "Host",
            "default": ""
        },
        "port": {
            "type": "integer",
            "ui:title": "Port"
        },
        "minRecordingTime": {
            "type": "integer",
            "ui:title": "Minimum recording time"
        },
        "suppressEmptySlotWarnings": {
            "type": "boolean",
            "description": "If true, no warnings will be emitted when storage slots are empty.",
            "ui:title": "Suppress Empty Slot Warnings"
        }
    },
    "required": [
        "host"
    ],
    "additionalProperties": false
}
