summaryrefslogtreecommitdiff
path: root/json/tests/draft2020-12/infinite-loop-detection.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft2020-12/infinite-loop-detection.json')
-rw-r--r--json/tests/draft2020-12/infinite-loop-detection.json36
1 files changed, 0 insertions, 36 deletions
diff --git a/json/tests/draft2020-12/infinite-loop-detection.json b/json/tests/draft2020-12/infinite-loop-detection.json
deleted file mode 100644
index 9c3c362..0000000
--- a/json/tests/draft2020-12/infinite-loop-detection.json
+++ /dev/null
@@ -1,36 +0,0 @@
-[
- {
- "description": "evaluating the same schema location against the same data location twice is not a sign of an infinite loop",
- "schema": {
- "$defs": {
- "int": { "type": "integer" }
- },
- "allOf": [
- {
- "properties": {
- "foo": {
- "$ref": "#/$defs/int"
- }
- }
- },
- {
- "additionalProperties": {
- "$ref": "#/$defs/int"
- }
- }
- ]
- },
- "tests": [
- {
- "description": "passing case",
- "data": { "foo": 1 },
- "valid": true
- },
- {
- "description": "failing case",
- "data": { "foo": "a string" },
- "valid": false
- }
- ]
- }
-]