jsonschema-valid 0.5.2

A simple JSON schema validator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[
    {
        "description": "validation of regular expressions",
        "schema": {"format": "regex"},
        "tests": [
            {
                "description": "a valid regular expression",
                "data": "([abc])+\\s+$",
                "valid": true
            },
            {
                "description": "a regular expression with unclosed parens is invalid",
                "data": "^(abc]",
                "valid": false
            }
        ]
    }
]