summaryrefslogtreecommitdiff
path: root/tests/draft-future/optional/format/json-pointer.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/draft-future/optional/format/json-pointer.json')
-rw-r--r--tests/draft-future/optional/format/json-pointer.json32
1 files changed, 31 insertions, 1 deletions
diff --git a/tests/draft-future/optional/format/json-pointer.json b/tests/draft-future/optional/format/json-pointer.json
index 65c2f06..a0346b5 100644
--- a/tests/draft-future/optional/format/json-pointer.json
+++ b/tests/draft-future/optional/format/json-pointer.json
@@ -1,9 +1,39 @@
[
{
"description": "validation of JSON-pointers (JSON String Representation)",
- "schema": {"format": "json-pointer"},
+ "schema": { "format": "json-pointer" },
"tests": [
{
+ "description": "all string formats ignore integers",
+ "data": 12,
+ "valid": true
+ },
+ {
+ "description": "all string formats ignore floats",
+ "data": 13.7,
+ "valid": true
+ },
+ {
+ "description": "all string formats ignore objects",
+ "data": {},
+ "valid": true
+ },
+ {
+ "description": "all string formats ignore arrays",
+ "data": [],
+ "valid": true
+ },
+ {
+ "description": "all string formats ignore booleans",
+ "data": false,
+ "valid": true
+ },
+ {
+ "description": "all string formats ignore nulls",
+ "data": null,
+ "valid": true
+ },
+ {
"description": "a valid JSON-pointer",
"data": "/foo/bar~0/baz~1/%a",
"valid": true