pykwalify icon indicating copy to clipboard operation
pykwalify copied to clipboard

Python YAML/JSON schema validation library

Results 21 pykwalify issues
Sort by recently updated
recently updated
newest added

### Change Type [ ] Addition [x] Correction [ ] Deprecation [ ] Cleanup (formatting, typos, etc.) ### Proposed Changes ReadTheDocs does not seem to be updated for the 1.8.0...

I apologize if I missed this in the docs for kwalify or pykwalify, or if this was already addressed in an earlier issue (I have searched but cannot find anything)....

### Environment * PyKwalify version: 1.8.0 * Python version: CPython 3.9.0 ### Proposed Functionality Allow schema validation for multiple files at once. ```sh pykwalify \ --strict-rule-validation \ --schema-file a_schema.yaml \...

### Proposed Functionality For regex matching, we are using re.match which only checks if the pattern/regex is present at the beginning of the string. But if that is the case...

### Environment * Python version: 3.6.9 * PyKwalify version: 1.7.0 Documentation states the pattern rule works for all scalar types. It appears that with the commit for issue #47, the...

This rebuild might solve the validation issues found with include argument. Still needs some work to sort out some issues found. But good enough to validate the schema side of...

Currently 'default' can only be used with scalar types. It should be possible to specify a default value for mappings and sequences too. See this schema for example: ```yaml ---...

This pull request adds the following cli options: - `-y EXT, --yaml-extension EXT` - `-j EXT, --json-extension EXT` Both accept a string representing a file extension for files like, e.g.,...

Rx knows [`any.of`](http://rx.codesimply.com/coretype/any.html) for subschemas, and [feature request #10 on the Kwalify sourceforge](https://sourceforge.net/p/kwalify/feature-requests/10/) suggests an implementation. This would be a great feature to have for cases where, e.g., a data...

Hi, as opposed to ruby version of kwalify, pykwalify unfortunately does not take for example a data.conf in yaml format. I can validate a data.conf against a data.schema.yaml in ruby,...