Dmitry Dygalo

Results 492 comments of Dmitry Dygalo

Re: test suite. It should be there, yep, but likely disabled as of now.

Yes, I am actively looking into these things and wanted to publish a design document to get feedback on implementation. It is also somehow a roadmap to 1.0 and will...

@manuschillerdev I added it as a separate crate here - #373 :) It is a prototype, but ref resolving is more or less ready Btw, @jqnatividad thanks for sharing your...

@jqnatividad Thank you! The currently submitted version is not working yet, but I am slowly working on it :)

Thanks for opening this! > Is it possible to use https://github.com/Stranger6667/jsonschema-rs/pull/341 when using jsonschema_rs from python? Not at the moment, but it should be possible to implement on the bindings...

Hi @antouhou! Thank you so much for this PR! I am definitely interested in having support for custom keywords :) I'll take a look at it next weekend Happy to...

Hi @jqnatividad Thank you for asking! :) As far as I see, those specs are not compatible with JSON Schema, so supporting them directly would require substantial changes here. I...

At the moment, I think that the following layout will be a good step in this direction: - Store validators in a vector - Store metadata (relative_path / absolute_path) in...

Hi! There could be multiple ways to approach this issue. The simplest one would be to utilize the `arbitrary_precision` feature of `serde-json` - in this case, any number will be...

@hoijui There is a `pub(crate)` [to_owned](https://github.com/Stranger6667/jsonschema-rs/blob/master/jsonschema/src/error.rs#L157) function which surely could be replaced by the `ToOwned` implementation - though, I am not yet sure if it will be sufficient. Let me...