schema

Ramon Rios 2019-12-05T17:10:30.001800Z

Hello

Ramon Rios 2019-12-05T17:12:56.003300Z

I have this schema for a rest method

(s/defschema CreateAddress
  (optional
   {:address-type {:street s/Str
                   :number s/Str
                   :box s/Str
                   :country s/Str
                   :city s/Str
                   :phone s/Str
                   :mobile s/Str
                   :email s/Str
                   :fax s/Str
                   :cc s/Str
                   :valid-from t/DateTime
                   :customer CustomerId}}))
I would like to say on this schema that i could receive multiple maps

ikitommi 2019-12-05T19:20:49.004100Z

[CreateAddess]

Ramon Rios 2019-12-06T10:19:02.004200Z

Thank you 🙂