{
    "source": "../https.js",
    "input-schema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "namespace": {
                "type": "string",
                "required": true,
                "description": "Specify a namespace to group sockets (Rooms)"
            },
            "events": {
                "type": "array",
                "items": {
                    "type": "string"
                },
                "description": "Add events that the listener should listen to. Apart from custom events that are added here, system events named 'error', 'connect', 'disconnect', 'newListener' and 'removeListener' are fired for corresponding events."
            }
        }
    },
    "output-schema": {
        "type": "any"
    },
    "meta": {
        "name": "websocketInterface",
        "isInterface": true
    }
}