The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
[
    {
        "description": "exclusiveMinimum validation",
        "schema": {
            "exclusiveMinimum": 1.1
        },
        "tests": [
            {
                "description": "above the exclusiveMinimum is valid",
                "data": 1.2,
                "valid": true
            },
            {
                "description": "boundary point is invalid",
                "data": 1.1,
                "valid": false
            },
            {
                "description": "below the exclusiveMinimum is invalid",
                "data": 0.6,
                "valid": false
            },
            {
                "description": "ignores non-numbers",
                "data": "x",
                "valid": true
            }
        ]
    }
]