{
    "$schema": "http://json-schema.org/schema#",
    "type": "object",
    "properties": {
        "id": {
            "type": "string"
        },
        "jsonrpc": {
            "type": "string"
        },
        "result": {
            "type": "object",
            "additionalProperties": {
                "type": "object",
                "properties": {
                    "addresses": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    },
                    "protocols": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        }
                    }
                },
                "required": [
                    "addresses",
                    "protocols"
                ]
            }
        }
    },
    "required": [
        "id",
        "jsonrpc",
        "result"
    ]
}