Fork me on GitHub
#schema
<
2019-12-05
>
Ramon Rios17:12:56

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

ikitommi19:12:49

[CreateAddess]

Ramon Rios10:12:02

Thank you 🙂