Simple Clojure JSON-Schema Validator - on top of java-json-tools/json-schema-validator.
scjsv supports JSON Schema up to draft-04. If you need support for draft-07, see luposlip/json-schema.
scjsv requires Java 1.8 or later.
validator
creates a Clojure data structure validator against the given JSON Schema.json-validator
created a JSON string validator against the given JSON Schema.(require '[scjsv.core :as v])
(def schema {:$schema "http://json-schema.org/draft-04/schema#"
:type "object"
:properties {:id {:type "integer"}}
:required [:id]})
(def validate (v/validator schema))
(validate {:id 1})
; nil
(validate {})
; ({:domain "validation"
; :instance {:pointer ""}
; :keyword "required"
; :level "error"
; :message "object has missing required properties ([\"id\"])"
; :missing ["id"]
; :required ["id"]
; :schema {:loadingURI "#" :pointer ""}})
Copyright © 2015-2018 Metosin Oy.
Distributed under the Eclipse Public License 2.0.
Can you improve this documentation? These fine people already did:
Tommi Reiman, Miikka Koskinen & Andreas GebhardtEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close