Code Monkey home page Code Monkey logo

Comments (11)

nicolaiarocci avatar nicolaiarocci commented on August 25, 2024

Try:

tels: {
  'type': 'list', 
  'items': {
      'text': {'type': 'string', 'required': True},
      'ext': {'type': 'string'},
      'note': {'type': 'string', 'maxlength': 64}
  }}

From the docs: "When a dictionary, items defines the validation schema for items in a list (...) When a list, defines the allowed values for a list of fixed length".

Please note that in order to make list validation easier, with next release schema is used for both fixed and arbitrary length lists (docs are updated already).

WIll fix the typo.

from cerberus.

LarryEitel avatar LarryEitel commented on August 25, 2024

Ok, I made that change and likely because current release doesn't support it yet, I returns the error:

"'str' object has no attribute 'get'"

Should I wait for your next release or look/hack a work-around?

Thank you for your excellent support of these projects!!! :)

from cerberus.

nicolaiarocci avatar nicolaiarocci commented on August 25, 2024

I updated the snippet, should be ok now. Sorry about that.

I plan on releasing the next version of Cerberus next week, even though it will be a little longer before the next production release of Eve will be available.

from cerberus.

nicolaiarocci avatar nicolaiarocci commented on August 25, 2024

LOL had to edit it once again. Time to take break I guess :)

from cerberus.

LarryEitel avatar LarryEitel commented on August 25, 2024

Which scenario do you recommend from the list of three involving the validating of an arbitrary list of dictionaries?

from cerberus.

LarryEitel avatar LarryEitel commented on August 25, 2024

OK, this passes on a single item, NOT multiple items:

tels = {
    'type': 'list', 
    'items': [{
        'type': 'dict', 
        'schema': {
            'text': {'type': 'string', 'required': True},
            'ext': {'type': 'string'},
            'note': {'type': 'string', 'maxlength': 64}
        }}]}

from cerberus.

nicolaiarocci avatar nicolaiarocci commented on August 25, 2024

Check my snippet again (didn't get it right the first time around). The schema thing won't work with the current version (0.0.2) of Cerberus.

from cerberus.

LarryEitel avatar LarryEitel commented on August 25, 2024

I think you are referring to the readthedocs snippet.

This does NOT pass:

tels = {
    'type': 'list', 
    'schema': {
        'type': 'dict', 
            'schema': {
                'text': {'type': 'string', 'required': True},
                'ext': {'type': 'string'},
                'note': {'type': 'string', 'maxlength': 64}
        }}}

This PASSES:

tels = {
    'type': 'list', 
    'items': {
            'text': {'type': 'string', 'required': True},
            'ext': {'type': 'string'},
            'note': {'type': 'string', 'maxlength': 64}
        }}

AND this PASSES:

tels = {
    'type': 'list', 
    'items': [{
        'type': 'dict', 
        'schema': {
            'text': {'type': 'string', 'required': True},
            'ext': {'type': 'string'},
            'note': {'type': 'string', 'maxlength': 64}
        }}]}

In cases that pass, it is only when validating against ONE item.

from cerberus.

nicolaiarocci avatar nicolaiarocci commented on August 25, 2024

Am in a hurry now, however I quickly tested the following and it seems to behave correctly:

>>> from cerberus import Validator
>>> v = Validator()
>>> schema = {'tels': {'type': 'list', 'items': {'text': {'type': 'string'}, 'num': {'type': 'integer'}}}}
>>> document = {'tels': [{'text': 'hello', 'num': 1}, {'text': 'bye'}]}
>>> v.validate(document, schema)
True

Hope this helps.

from cerberus.

LarryEitel avatar LarryEitel commented on August 25, 2024

Awesome!! It worked AND I was able to validate more than one list item. :)

I occurs to me that if/when a list item fails, how would you know WHICH item in the list failed? Would it help to return the offending item with the error? I don't even see an offset pointing to the position in the list.

from cerberus.

nicolaiarocci avatar nicolaiarocci commented on August 25, 2024

That's probably a good idea. Would you open ticket/issue for that?

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.