**Original Data** ```json5 { "a": 123, "b": "xxx", "c": [ [ 1, 2, 3 ], [ 1, null, 3 ] ] } ``` **Result** ```go type RootObject struct { A int `json:"a"` B string `json:"b"` C []interface{} `json:"c"` } ``` **Expect** ```go type RootObject struct { A int `json:"a"` B string `json:"b"` C [][]interface{} `json:"c"` } ```