So here's my issue. I included a working example of a code that I'm trying to Parse into working C# Objects, but for the life of me I can't figure out how that would be possible with this type of JSON format. Can't even imagine how you access the first part of the nesting which uses quotes ( ""{ )as a name. So I figured I better as the experts here.
    {
    "": {
        "1": {
            "1": {
                "id": "1",
                "active": "1",
                "guidisplay_name": "NM",
                "image": null,
                "row": "1",
                "col": "1",
                "rack": "A"
            },
            "3": {
                "id": "3",
                "active": "1",
                "name": "NM",
                "image": null,
                "row": "1",
                "col": "3",
                "rack": "A"
            },
            "4": {
                "id": "4",
                "active": "1",
                "guidisplay_name": "NM",
                "image": null,
                "row": "1",
                "col": "4",
                "rack": "A"
            },
            "5": {
                "id": "5",
                "active": "1",
                "guidisplay_name": "NM",
                "image": null,
                "row": "1",
                "col": "5",
                "rack": "A"
            },
            "6": {
                "id": "6",
                "active": "1",
                "name": "NM",
                "image": null,
                "row": "1",
                "col": "6",
                "rack": "A"
            },
            "2": {
                "id": "8",
                "active": "1",
                "name": "NM",
                "image": null,
                "row": "1",
                "col": "2",
                "rack": "A"
            }
        },
        "2": {
            "2": {
                "id": "2",
                "active": "1",
                "name": "NM",
                "image": null,
                "row": "2",
                "col": "2",
                "rack": "A"
            },
            "1": {
                "id": "7",
                "active": "1",
                "name": "NM",
                "image": null,
                "row": "2",
                "col": "1",
                "rack": "A"
            },
            "3": {
                "id": "9",
                "active": "1",
                "name": "NM",
                "image": null,
                "row": "2",
                "col": "3",
                "rack": "A"
            },
            "4": {
                "id": "10",
                "active": "1",
                "name": "NM",
                "image": null,
                "row": "2",
                "col": "4",
                "rack": "A"
            },
            "5": {
                "id": "11",
                "active": "1",
                "name": "NM",
                "image": null,
                "row": "2",
                "col": "5",
                "rack": "A"
            },
            "6": {
                "id": "12",
                "active": "1",
                "name": "NM",
                "image": null,
                "row": "2",
                "col": "6",
                "rack": "A"
            },
            "7": {
                "id": "13",
                "active": "1",
                "name": "NM",
                "image": null,
                "row": "2",
                "col": "7",
                "rack": "A"
            }
        }
    }
}