i have problem with get specified value from json. I need get Key value from json below, its start with array/list.
[
  {
    "Version": 1,
    "Key": "353333_PC",
    "Type": "PostalCode",
    "Rank": 500,
    "LocalizedName": "Suwalki",
    "EnglishName": "Suwalki",
    "PrimaryPostalCode": "16-400",
    "Region": {
      "ID": "EUR",
      "LocalizedName": "Europe",
      "EnglishName": "Europe"
    },
    "Country": {
      "ID": "PL",
      "LocalizedName": "Poland",
      "EnglishName": "Poland"
    }
  }
]
I have tried code like this:
        String content = parent.path("Key").asText();
        return content;
but it returns empty string. Have u any idea how get this?
