summaryrefslogtreecommitdiff
path: root/json/tests/draft2019-09/optional/float-overflow.json
blob: f5741facc53105d6acdb0ce9c494d2b1481b70d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[
    {
        "description": "all integers are multiples of 0.5, if overflow is handled",
        "schema": {
            "$schema": "https://json-schema.org/draft/2019-09/schema",
            "type": "integer", "multipleOf": 0.5
        },
        "tests": [
            {
                "description": "valid if optional overflow handling is implemented",
                "data": 1e308,
                "valid": true
            }
        ]
    }
]