]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/rapidjson/bin/jsonschema/tests/draft3/default.json
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / rapidjson / bin / jsonschema / tests / draft3 / default.json
diff --git a/ceph/src/rapidjson/bin/jsonschema/tests/draft3/default.json b/ceph/src/rapidjson/bin/jsonschema/tests/draft3/default.json
deleted file mode 100644 (file)
index 1762977..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-[
-    {
-        "description": "invalid type for default",
-        "schema": {
-            "properties": {
-                "foo": {
-                    "type": "integer",
-                    "default": []
-                }
-            }
-        },
-        "tests": [
-            {
-                "description": "valid when property is specified",
-                "data": {"foo": 13},
-                "valid": true
-            },
-            {
-                "description": "still valid when the invalid default is used",
-                "data": {},
-                "valid": true
-            }
-        ]
-    },
-    {
-        "description": "invalid string value for default",
-        "schema": {
-            "properties": {
-                "bar": {
-                    "type": "string",
-                    "minLength": 4,
-                    "default": "bad"
-                }
-            }
-        },
-        "tests": [
-            {
-                "description": "valid when property is specified",
-                "data": {"bar": "good"},
-                "valid": true
-            },
-            {
-                "description": "still valid when the invalid default is used",
-                "data": {},
-                "valid": true
-            }
-        ]
-    }
-]