Wow that's a super nested sequence
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))
And then you just have a vector of maps, and you can pluck out keys from them as you want
For example, if you want every map where "status" is the field you can use (filter #(= "status" (:field %)) (vec (flatten items)))
Thanks! I’ll give that a try
No prob!