github.com/kaptinlin/jsonschema@v0.4.6/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/float-overflow.json (about)

     1  [
     2      {
     3          "description": "all integers are multiples of 0.5, if overflow is handled",
     4          "schema": {"type": "number", "multipleOf": 0.5},
     5          "tests": [
     6              {
     7                  "description": "valid if optional overflow handling is implemented",
     8                  "data": 1e308,
     9                  "valid": true
    10              }
    11          ]
    12      }
    13  ]