Hi all,
I've upgraded my env to python 3.7.1, eve 0.8.1 and cerberus 1.2
when I use 'description' in the schema (this is handy for me because I use swagger-ui) I'll get an error like:
cerberus.schema.SchemaError: {'custid': [{'description': ['unknown rule']}]...
Any help is appreciated :-)
devices = {
...
'schema': {
'custid': {
'description': 'IDMS Customer-ID',
'type': 'integer',
'minlength': 1,
'maxlength': 16,
'required': True,
},
...
}
}
}
br
Simon