Nested Dictionary typechecking

Hi, i have the following json structure and want to get rid of the typechecking warning:

        var myDict = { 
            "version" => "1.1.1", 
            "generator" => "logger", 
            "data" => [ { 
                "uuid" => "49f54392-1f4a-11e9-ab14-d663bd873d93", 
                "last" => 1671960103000l, 
                "interval" => -1, 
                "protocol" => "omv", 
                "tuples" => [ [ 1671960103000l, 20095964 ] ]
            } ]
        };
        var vers = myDict.get("version");
        var draw = myDict.get(["data"][0]["tuples"[0][1]]);

WARNING: ... \WebRequestDelegate.mc:13,8: Cannot determine if container access is using container type.

This looks similar to CIQQA-1327 but i can't explore the correct typedef syntax.