schema

bleadof 2016-12-23T09:53:11.000006Z

How do I define a schema where I have non-empty vector of type?

bleadof 2016-12-23T09:54:09.000007Z

If I do

[(s/one s/Str)]
, it only allows one, but I’d like to have one or more, like + in regular expression?

frank 2016-12-23T15:44:51.000009Z

you can do zero or more with [s/Str], but I don't know about non-empty