data-spec-validator
data-spec-validator copied to clipboard
An easy & structural way to validate data
Results
1
data-spec-validator issues
Sort by
recently updated
recently updated
newest added
Here is a minimum-reproducible code: ```python3 class _Spec: data = Checker([LIST_OF], LIST_OF=Optional[str]) validate_data_spec({'data': ['str', None]}, _Spec) # TypeError: field: _Spec.data, reason: ['str', None] is not a spec of , detail:...