i got the hang of it! ``` mapper.readTree(json...
# jackson-kotlin
h
i got the hang of it!
Copy code
mapper.readTree(json).at("/books").forEach {
      it.fields().forEach {
        println("${it.key} to ${it.value}")
      }
      println("--")
    }
(i turned “book” into “books”, and into an array of objects! :))