summaryrefslogtreecommitdiff
path: root/json/tests/draft4/optional/bignum.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft4/optional/bignum.json')
-rw-r--r--json/tests/draft4/optional/bignum.json49
1 files changed, 49 insertions, 0 deletions
diff --git a/json/tests/draft4/optional/bignum.json b/json/tests/draft4/optional/bignum.json
new file mode 100644
index 0000000..7b4755c
--- /dev/null
+++ b/json/tests/draft4/optional/bignum.json
@@ -0,0 +1,49 @@
+[
+ {
+ "description": "integer",
+ "schema": {"type": "integer"},
+ "tests": [
+ {
+ "description": "a bignum is an integer",
+ "data": 12345678910111213141516171819202122232425262728293031,
+ "valid": true
+ }
+ ]
+ },
+ {
+ "description": "number",
+ "schema": {"type": "number"},
+ "tests": [
+ {
+ "description": "a bignum is a number",
+ "data": 98249283749234923498293171823948729348710298301928331,
+ "valid": true
+ }
+ ]
+ },
+ {
+ "description": "string",
+ "schema": {"type": "string"},
+ "tests": [
+ {
+ "description": "a bignum is not a string",
+ "data": 98249283749234923498293171823948729348710298301928331,
+ "valid": false
+ }
+ ]
+ },
+ {
+ "description": "float comparison with high precision",
+ "schema": {
+ "maximum": 972783798187987123879878123.18878137,
+ "exclusiveMaximum": true
+ },
+ "tests": [
+ {
+ "description": "comparison works for high numbers",
+ "data": 972783798187987123879878123.188781371,
+ "valid": false
+ }
+ ]
+ }
+]