Jackson JSON map key jako właściwość zawartego obiektu

Biorąc pod uwagę taką strukturę:

{
  "nameOfObject": { "score": 100 },
  "anotherObject": { "score": 30 }
}

Czy jest możliwe mapowanie tego na:

class Container {
  Map<String, ScoreKeeper> scoreKeepers;
}

class ScoreKeeper {
  String name;
  int score;
}

Żeby skończyć zname własnośćScoreKeeper instancje ustawione na"nameOfObject" i"anotherObject", odpowiednio?

questionAnswers(3)

yourAnswerToTheQuestion