0

I have a nested json which looks like

{
 profiles : {
      "mike": "123",
      "jack": "456"
 }
}

The profile json can be dynamic ie I dont know how many profiles/name will be there in it. I just get the request. It could be 2 or 3 or X. In java I tried

Company.java

public class company {
   @JsonProperty("profiles")
   Profiles profile;
}

Profiles.java

public class profiles{
  JsonObject info;
}

This is wrong. What is the right way to get that nested json?

ksernow
  • 662
  • 3
  • 14
  • 33

1 Answers1

2
public class company {
    @JsonProperty("profiles")
    Map<String, Integer> profiles;
}
raksa
  • 898
  • 6
  • 17