-
Hi!
What would you think of abstracting the schema handling in Eve, so that other schema formats could be used?
As a way of simplifying the client side model layer and maintainability of my apps, I …
-
I'm creating an API for IEEE 1685-2009 IP-XACT. There is a special requirement to the schemas. In several schemas there is a choice between required fields, e.g. the valid schema may specify a set of …
-
Although not part of validation, where would be best place to specify default values?
-
Say I want to extend people schema in settings to lets say users.
So I:
```
import copy
users = copy.deepcopy(people)
users['schema']['username'] = {
'type': 'string',
'minle…