jinx
jinx copied to clipboard
jinx is not xml-schema (it's json-schema!)
Bumps [uri](https://github.com/lambdaisland/uri) from 1.1.0 to 1.14.120. Release notes Sourced from uri's releases. v1.14.120 Fixed Treat a backslash in the authority section as a delimiter which starts the path section (CVE-2023-28628,...
This was preventing CLJS from being able to catch the error and return a validation failure.
Expected: ```clojure (jinx/validate (jinx/schema {"type" "array" "uniqueItems" true}) []) ;= {:instance [], :annotations {}, :type "array", :valid? true} ``` Actual: ```clojure (jinx/validate (jinx/schema {"type" "array" "uniqueItems" true}) []) Execution error...
[jinx "0.1.6"] I was hoping for a switch to enable this. When I dug into the code, I found everything necessary to do it, but hooked up wrongly - validate/process-keyword...
Hi! Thank you for making Jinx. I am trying to add `json-schema` validation to requests. 1. I have a large Schema that defines all the valid types and has `$ref`...
Hi, this is actually a question: Is is possible to lazily process a stream of JSON chunks with this library? I'm looking for a clojure alternative to [this](https://github.com/worldturner/medeia-validator)
In the official test suite, the tests in this group are failing. Not sure why - possibly something to do with differences in js regexes.
Computing regexes for ranges for code-points can be slow. Therefore, code-points beyond the Basic Multilingual Plane are not yet supported. A faster approach is needed. *Allen's interval algebra* may offer...