summaryrefslogtreecommitdiff
path: root/json/tests/draft2020-12/optional/bignum.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft2020-12/optional/bignum.json')
-rw-r--r--json/tests/draft2020-12/optional/bignum.json110
1 files changed, 0 insertions, 110 deletions
diff --git a/json/tests/draft2020-12/optional/bignum.json b/json/tests/draft2020-12/optional/bignum.json
deleted file mode 100644
index d69b29e..0000000
--- a/json/tests/draft2020-12/optional/bignum.json
+++ /dev/null
@@ -1,110 +0,0 @@
-[
- {
- "description": "integer",
- "schema": {
- "$schema": "https://json-schema.org/draft/2020-12/schema",
- "type": "integer"
- },
- "tests": [
- {
- "description": "a bignum is an integer",
- "data": 12345678910111213141516171819202122232425262728293031,
- "valid": true
- },
- {
- "description": "a negative bignum is an integer",
- "data": -12345678910111213141516171819202122232425262728293031,
- "valid": true
- }
- ]
- },
- {
- "description": "number",
- "schema": {
- "$schema": "https://json-schema.org/draft/2020-12/schema",
- "type": "number"
- },
- "tests": [
- {
- "description": "a bignum is a number",
- "data": 98249283749234923498293171823948729348710298301928331,
- "valid": true
- },
- {
- "description": "a negative bignum is a number",
- "data": -98249283749234923498293171823948729348710298301928331,
- "valid": true
- }
- ]
- },
- {
- "description": "string",
- "schema": {
- "$schema": "https://json-schema.org/draft/2020-12/schema",
- "type": "string"
- },
- "tests": [
- {
- "description": "a bignum is not a string",
- "data": 98249283749234923498293171823948729348710298301928331,
- "valid": false
- }
- ]
- },
- {
- "description": "maximum integer comparison",
- "schema": {
- "$schema": "https://json-schema.org/draft/2020-12/schema",
- "maximum": 18446744073709551615
- },
- "tests": [
- {
- "description": "comparison works for high numbers",
- "data": 18446744073709551600,
- "valid": true
- }
- ]
- },
- {
- "description": "float comparison with high precision",
- "schema": {
- "$schema": "https://json-schema.org/draft/2020-12/schema",
- "exclusiveMaximum": 972783798187987123879878123.18878137
- },
- "tests": [
- {
- "description": "comparison works for high numbers",
- "data": 972783798187987123879878123.188781371,
- "valid": false
- }
- ]
- },
- {
- "description": "minimum integer comparison",
- "schema": {
- "$schema": "https://json-schema.org/draft/2020-12/schema",
- "minimum": -18446744073709551615
- },
- "tests": [
- {
- "description": "comparison works for very negative numbers",
- "data": -18446744073709551600,
- "valid": true
- }
- ]
- },
- {
- "description": "float comparison with high precision on negative numbers",
- "schema": {
- "$schema": "https://json-schema.org/draft/2020-12/schema",
- "exclusiveMinimum": -972783798187987123879878123.18878137
- },
- "tests": [
- {
- "description": "comparison works for very negative numbers",
- "data": -972783798187987123879878123.188781371,
- "valid": false
- }
- ]
- }
-]