]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/rapidjson/bin/jsonschema/tests/draft3/maxItems.json
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / rapidjson / bin / jsonschema / tests / draft3 / maxItems.json
diff --git a/ceph/src/rapidjson/bin/jsonschema/tests/draft3/maxItems.json b/ceph/src/rapidjson/bin/jsonschema/tests/draft3/maxItems.json
deleted file mode 100644 (file)
index 3b53a6b..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-[
-    {
-        "description": "maxItems validation",
-        "schema": {"maxItems": 2},
-        "tests": [
-            {
-                "description": "shorter is valid",
-                "data": [1],
-                "valid": true
-            },
-            {
-                "description": "exact length is valid",
-                "data": [1, 2],
-                "valid": true
-            },
-            {
-                "description": "too long is invalid",
-                "data": [1, 2, 3],
-                "valid": false
-            },
-            {
-                "description": "ignores non-arrays",
-                "data": "foobar",
-                "valid": true
-            }
-        ]
-    }
-]