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

     1  [
     2      {
     3          "description": "all integers are multiples of 0.5, if overflow is handled",
     4          "schema": {
     5              "$schema": "https://json-schema.org/draft/next/schema",
     6              "type": "integer",
     7              "multipleOf": 0.5
     8          },
     9          "tests": [
    10              {
    11                  "description": "valid if optional overflow handling is implemented",
    12                  "data": 1e308,
    13                  "valid": true
    14              }
    15          ]
    16      }
    17  ]