meander

All things about https://github.com/noprompt/meander Need help and no one responded? Feel free to ping @U5K8NTHEZ
dregre 2020-09-07T01:57:56.237400Z

Unfortunately, nothing like that. In specter terms, the namespace is determined by the path. Here's a real-ish example. Input:

dregre 2020-09-07T01:58:03.237600Z

{:name "Joe"

 :addresses
 [{:street-name "Test St."
   :city "Olympia"
   :state "NJ"}]

 :identifications
 [{:type :license
   :issuer
   {:name "DMV"
    :entries
    [{:code "DLSDLKDSK"
      :algo "akkak"}]}}]}

dregre 2020-09-07T01:58:13.237800Z

Output

dregre 2020-09-07T01:58:19.238Z

{:person/name "Joe"
 
 :person/addresses
 [{:address/street-name "Test St."
   :address/city "Olympia"
   :address/state "NJ"}]

 :person/identifications
 [{:identification/type :license
   :identification/issuer
   {:issuer/name "DMV"
    :issuer/entries
    [{:entry/code "DLSDLKDSK"
      :entry/algo "akkak"}]}}]}

dregre 2020-09-07T02:00:58.238200Z

And this is how I solved it in specter (but it's horrendous — if I keep the specter I'll break this apart a bit):

dregre 2020-09-07T02:01:47.238400Z