Just learning Clojure. I have the following json string:
(def json "{\"a\": 1, \"b\": \"val\", \"c\": {\"D/E\": [1, 2, 3]}}}")
If the key-fn param is true in the Cheshire parse-string call I got the following map:
(def parsed-json (cheshire/parse-string json true))
;; ==> {:a 1, :b "val", :c #:D{:E [1 2 3]}}
(type parsed-json)
;; => clojure.lang.PersistentArrayMap
(type (:c parsed-json))
;; => clojure.lang.PersistentArrayMap
How can I access the [1 2 3] array? I don't understand what is #:D here, and how I can access :E.