schema 2019-12-05

@ramon.rios has joined the channel

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

@nirrub has joined the channel

[CreateAddess]

Thank you 🙂