Fork me on GitHub
#tmp-json-parsing
<
2016-06-01
>
gowder01:06:00

Wow that's a super nested sequence

gowder01:06:31

One thing to do in order to get rid of the nesting as a first step, if that sequence of vectors is stored associated with the symbol items, is (vec (flatten items))

gowder01:06:48

And then you just have a vector of maps, and you can pluck out keys from them as you want

gowder02:06:58

For example, if you want every map where "status" is the field you can use (filter #(= "status" (:field %)) (vec (flatten items)))

dmbennett03:06:08

Thanks! I’ll give that a try