malli
前提
code:clojure
独自schema
code:clojure
(def -foo-string
(m/-simple-schema
{:type :string
;; m/explain -> me/humanize した際のカスタムエラーメッセージ
:type-properties {:error/message "must be \"foo\""}
(m/validate
[:schema {:registry {::foo -foo-string}}
::foo]
"bar")