python-fastjsonschema icon indicating copy to clipboard operation
python-fastjsonschema copied to clipboard

Fast JSON schema validator for Python.

Results 24 python-fastjsonschema issues
Sort by recently updated
recently updated
newest added

``` Python 3.13.3 (main, Apr 29 2025, 12:24:14) [GCC 13.3.0] on linux >>> import fastjsonschema >>> schema = {'type': 'object', 'patternProperties': {}} >>> fastjsonschema.compile(schema) Traceback (most recent call last): File...

Thank you for this great library! Python 3.9 fell out of support [a couple of days ago](https://www.python.org/downloads/) so I updated that too. Would you rather keep it for now?

What do you think about adding type information directly into source code or adding type stubs (via *.pyi files)? ([Specs](https://typing.python.org/en/latest/spec/distributing.html))

We're slowly replacing our use of `schema` with your library because this is sooo much faster (thank you!) and for feature parity we're started implementing some missing features. In schema...

enhancement