jsonsubschema icon indicating copy to clipboard operation
jsonsubschema copied to clipboard

Tool for checking whether a JSON schema is a subschema of another JSON schema.

Results 3 jsonsubschema issues
Sort by recently updated
recently updated
newest added

Since [jsonschema](https://anaconda.org/conda-forge/jsonschema) is available in conda-forge, please also upload this package.

Hello, I noticed a performance problem as soon as the schema contains the following structure: ` ... "anyOf": [ {"enum": ["aa", "bb", "cc"]}, {"pattern": "pattern1"}, {"pattern": "pattern2"}, {"pattern": "pattern3"}, ......

Hello, There is a problem when using escaped characters in a pattern. E.g.: ` { "type": "string", "anyOf": [ { "pattern": "^a\\-b$" }, { "pattern": "^b\\-c$" } ] } `...