So the question is how to properly build POJO for JSON that looks like this:
{"1":{
"value_1":"something",
"value_2":"something else"},
"2": {
"value_1":"something",
"value_2":"something else"},
"3": {
"value_1":"something",
"value_2":"something else"},
...
"999": {
"value_1":"something",
"value_2":"something else"}}
The problem is that I cant parse JSON as shown in Google Developers docs because there is to many different names to an array that holds the data I need.
You could try it to parse like this(spoiler a lot of code)
dependencies :
com.fasterxml.jackson.core jackson-core
com.fasterxml.jackson.core jackson-annotations
com.fasterxml.jackson.core jackson-databind