I implemented the recently committed 'dependencies': {'attr': 'val'}
support, but it's not working for my use case. Here's what I'd like to do:
schema = {
'attr1': {'type': 'string', 'required': True, 'allowed': ['Foo', 'Bar']},
'attr2': {'type': 'integer', 'required': True, 'default': 1,
'dependencies': {'attr1': 'Foo'}}
}
object = {
'attr1': 'Bar'
}
When I POST object
to an endpoint with schema
, it fails with "attr2": "field 'type' is required with values: Foo"
. I want it to only fail if attr1: 'Foo'
as in my dependencies dict.
I think Eve might be populating attr2
with the default value 1
specified in the schema and that's why it's throwing this error, but I'm not sure.
I just tried this on Cerberus 0.8-dev:
Then I tried:
Make sure you're on v0.8 though, this won't work on 0.7.2 which is the current release available on PyPI (which also means that this won't be available in Eve until Cerberus 0.8 is released and Eve 0.5 updates its Cerberus requirements).