Hello
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[CreateAddess]
Thank you 🙂