Giter Site home page Giter Site logo

Output errors as dict about cerberus HOT 1 CLOSED

pyeve avatar pyeve commented on August 15, 2024
Output errors as dict

from cerberus.

Comments (1)

nicolaiarocci avatar nicolaiarocci commented on August 15, 2024

I've been experimenting with this and while it looks good on paper, I think that it would introduce unneeded complexity, especially in the schema case, where it would cause nested dictionaries combined with lists of errors. Consider this scenario:

>>> schema = {'rows': {'type': 'list', 'schema': {'type': 'dict', 'schema': {'sku': {'type': 'string'}, 'price': {'type': 'integer'}}}}}
>>> document = {'rows': [{'sku': 123', 'price': '100'}, {'sku': 'KT123', 'price': 'AA'}]}
>>> v = Validator()
>>> v.validate(document, schema)
False

>>> v.errors

Would return something like

{'rows': {'0': {'sku': 'not a string', 'price': 'not an integer'}, 1: {'price': 'not an integer'}}}

or the positional and possibly more readable alternative:

{'rows': [{'sku': 'not a string', 'price': 'not a string'}, {'price': 'not an integer'}]}

This in addition to the fact that now you can have lists of errors for every field, even in normal circumstances; and repeated errors for different fields (missing fields for example, in the current implementation are simply listed as a single error. In a dict implementation you would have all fields as keys with the same error repeated), making the errors list too verbose.

Doesn't look pretty or useful IMHO. Besides, there haven't been other requests for this feature. I'm leaving this ticket on hold, to give it a fair chance and visibility (in case more people need/ask for this).

from cerberus.

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.