I've got to deal with a Dictionary like this, or more nested. How can I access fields like "twotwo" ? Or is there any better possibility to model such structure?
let nestedDict = [
    "fieldOne": "name",
    "fieldTwo": "name",
    "fieldThree":
        [
            [
            "twoOne": "some text",
            "twoTwo": true,
            "twoThree": 1e-40
            ],
            [
            "twoOne": "some text",
            "twoTwo": true,
            "twoThree": 1e-40
            ]
        ]
]
    
nestedDict["fieldThree"]["twoTwo"]?