{
    "$id": "https://alwaysai.co/secure-tunnel-schema.json",
    "$schema": "https://json-schema.org/draft/2019-09/schema",
    "title": "secure-tunnel",
    "type": "object",
    "properties": {
        "st_ports": {
            "type": "array",
            "items": {
                "type": "object",
                "required": ["enabled", "type", "ip", "port"],
                "properties": {
                    "enabled": {
                        "type": "boolean"
                    },
                    "type": {
                        "type": "string"
                    },
                    "ip": {
                        "type": "string"
                    },
                    "port": {
                        "type": "number"
                    }
                }
            }
        }
    },
    "required": ["st_ports"],
    "additionalProperties": false
}
