-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path$ref.json
More file actions
76 lines (76 loc) · 2.14 KB
/
$ref.json
File metadata and controls
76 lines (76 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[
{
"description": "$ref - reference to the script being evaluated",
"schemas": [
{ "$ref": "http://www.json-script.com/schema/schema.json#" },
{ "$ref": "http://www.json-script.com/schema/schema.json#$ref" },
{ "$ref": "http://www.json-script.com/schema/schema_strict.json#" },
{ "$ref": "http://www.json-script.com/schema/schema_strict.json#$ref" }
],
"tests": [
{
"description": "value should be a valid JSON-pointer",
"data": { "$ref": "/foo/bar" },
"valid": true
},
{
"description": "relative JSON-pointer is valid",
"data": { "$ref": "1/foo/bar" },
"valid": true
},
{
"description": "value can be any valid script",
"data": { "$ref": { "$exec": "func" } },
"valid": true
},
{
"description": "value can be another $ref instruction",
"data": { "$ref": { "$ref": "/foo/bar" } },
"valid": true
},
{
"description": "if value is invalid script then invalid",
"data": { "$ref": { "$exec": "func", "extra": {} } },
"valid": false
}
]
},
{
"description": "$if syntax errors",
"schemas": [
{ "$ref": "http://www.json-script.com/schema/schema.json#" },
{ "$ref": "http://www.json-script.com/schema/schema.json#$ref" }
],
"tests": [
{
"description": "invalid JSON-pointer is invalid",
"data": { "$ref": "foo" },
"valid": true
},
{
"description": "$ref is scalar but not a string",
"data": { "$ref": 1 },
"valid": true
}
]
},
{
"description": "$if syntax errors with strict schema",
"schemas": [
{ "$ref": "http://www.json-script.com/schema/schema_strict.json#" },
{ "$ref": "http://www.json-script.com/schema/schema_strict.json#$ref" }
],
"tests": [
{
"description": "invalid JSON-pointer is invalid",
"data": { "$ref": "foo" },
"valid": false
},
{
"description": "$ref is scalar but not a string",
"data": { "$ref": 1 },
"valid": false
}
]
}
]