Coder Social home page Coder Social logo

Comments (4)

Julian avatar Julian commented on May 16, 2024

Hey there.

So, have you gotten a chance to try this on the latest release (v0.4)? Assuming I haven't misunderstood, both of these should be available already. Perhaps the docs could use a bit more elaboration. For the failing validator and property, see ValidationError.validator and .path. Also check out the ErrorTree example in the README which is a bit easier to work with.

Let me know how it goes.

from jsonschema.

Julian avatar Julian commented on May 16, 2024

Any luck?

from jsonschema.

Xeus avatar Xeus commented on May 16, 2024

Yes, thanks for following up! And yes, we used .validator and .path, appreciate it! We're now returning a dictionary through the (deprecated) iter_errors containing a human-readable error message, the field and its value triggering an error, and the property of the schema which was violated.

from jsonschema.

Julian avatar Julian commented on May 16, 2024

OK great. Yeah iter_errors isn't deprecated, it's the new thing that
replaces stop_on_error which is deprecated.

And the easiest way if you need to have a bunch of dicts would just be to
pluck the attributes off certainly.

# Note that this can raise KeyErrors if you've got
# errors that are due to missing required properties
# so you need to be slightly cleverer if you really
# want the value
errors = ({
    "validator" : error.validator,
    "message" : error.message,
    "path" : error.path,
    "value" : reduce(operator.getitem, reversed(error.path), instance)
} for error in Validator().iter_errors(instance, schema))

from jsonschema.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.