Jak analizować tablicę json o tej samej strukturze, ale o różnych nazwach [zamknięte]

Chcę parsować plik json, ale wygląda to następująco:

CDG: {
id: "32569",
airport_name: "Charles De Gaulle",
latitude: "49.0167",
longitude: "2.55",
timezone: "2",
dst_indicator: "E",
city: "Paris",
country: "France",
country_code: "FR",
region: "TC1",
listing_display: "true",
pseudonyms: ""
},
ORY: {
id: "33539",
airport_name: "Orly",
latitude: "48.7167",
longitude: "2.3833",
timezone: "2",
dst_indicator: "E",
city: "Paris",
country: "France",
country_code: "FR",
region: "TC1",
listing_display: "true",
pseudonyms: ""
},
LBG: {
id: "123425",
airport_name: "Le Bourget",
latitude: "48.969444",
longitude: "2.441389",
timezone: "1",
dst_indicator: "E",
city: "Paris",
country: "France",
country_code: "FR",
region: "TC1",
listing_display: "true",
pseudonyms: ""
},

Ale jest około trzech tysięcy takich obiektów. Zawsze używałem Gsona do analizowania moich obiektów json, ale jak mogę przeanalizować ten rodzaj pliku? Jak mogę pobrać nazwę „CDG” lub „ORY”?

questionAnswers(2)

yourAnswerToTheQuestion