|
1 | 1 | {
|
2 | 2 | "id": "jsonscript.json#",
|
3 | 3 | "$schema": "http://json-schema.org/draft-04/schema#",
|
4 |
| - "description": "JSONScript schema", |
| 4 | + "title": "JSONScript schema", |
| 5 | + "description": "JSONScript without instructions: on the top level only parallel/serial execution is allowed", |
5 | 6 | "anyOf": [
|
6 |
| - { "$ref": "#/definitions/func" }, |
7 |
| - { "$ref": "#/definitions/method" }, |
8 |
| - { "$ref": "#/definitions/ref" }, |
9 |
| - { "$ref": "#/definitions/data" }, |
10 |
| - { "$ref": "#/definitions/parallel" }, |
11 |
| - { "$ref": "#/definitions/serial" }, |
12 |
| - { "$ref": "#/definitions/scalar" } |
| 7 | + { "$ref": "#parallel" }, |
| 8 | + { "$ref": "#serial" } |
13 | 9 | ],
|
14 | 10 | "definitions": {
|
| 11 | + "script": { |
| 12 | + "id": "#script", |
| 13 | + "title": "JSONScript script with instructions", |
| 14 | + "anyOf": [ |
| 15 | + { "$ref": "#func" }, |
| 16 | + { "$ref": "#method" }, |
| 17 | + { "$ref": "#ref" }, |
| 18 | + { "$ref": "#data" }, |
| 19 | + { "$ref": "#parallel" }, |
| 20 | + { "$ref": "#serial" }, |
| 21 | + { "$ref": "#scalar" } |
| 22 | + ] |
| 23 | + }, |
15 | 24 | "func": {
|
| 25 | + "id": "#func", |
16 | 26 | "description": "call to external function, $func value should evaluate to a string, $args should evaluate to array or object",
|
17 | 27 | "type": "object",
|
18 | 28 | "properties": {
|
19 |
| - "$func": { "$ref": "#" }, |
20 |
| - "$args": { "$ref": "#" } |
| 29 | + "$func": { "$ref": "#script" }, |
| 30 | + "$args": { "$ref": "#script" } |
21 | 31 | },
|
22 | 32 | "additionalProperties": false,
|
23 | 33 | "required": [ "$func" ]
|
24 | 34 | },
|
25 | 35 | "method": {
|
| 36 | + "id": "#method", |
26 | 37 | "description": "call to external object, $func value should evaluate to a string, $args should evaluate to array or object",
|
27 | 38 | "type": "object",
|
28 | 39 | "properties": {
|
29 |
| - "$object": { "$ref": "#" }, |
30 |
| - "$method": { "$ref": "#" }, |
31 |
| - "$args": { "$ref": "#" } |
| 40 | + "$object": { "$ref": "#script" }, |
| 41 | + "$method": { "$ref": "#script" }, |
| 42 | + "$args": { "$ref": "#script" } |
32 | 43 | },
|
33 | 44 | "additionalProperties": false,
|
34 | 45 | "required": [ "$method", "$object" ]
|
35 | 46 | },
|
36 |
| - "data": { |
37 |
| - "description": "data from the data instance using JSON-pointer expression, $data value should evalute to a string before the expression is evaluated", |
| 47 | + "ref": { |
| 48 | + "id": "#ref", |
| 49 | + "description": "data/script from the current script using absolute/relative JSON-pointer expression", |
38 | 50 | "type": "object",
|
39 | 51 | "properties": {
|
40 |
| - "$data": { "$ref": "#" } |
| 52 | + "$ref": { "$ref": "#script" } |
41 | 53 | },
|
42 | 54 | "additionalProperties": false,
|
43 |
| - "required": [ "$data" ] |
| 55 | + "required": [ "$ref" ] |
44 | 56 | },
|
45 |
| - "ref": { |
46 |
| - "description": "data/script from the current script using absolute/relative JSON-pointer expression", |
| 57 | + "data": { |
| 58 | + "id": "#data", |
| 59 | + "description": "data from the data instance using JSON-pointer expression, $data value should evalute to a string before the expression is evaluated", |
47 | 60 | "type": "object",
|
48 | 61 | "properties": {
|
49 |
| - "$ref": { "$ref": "#" } |
| 62 | + "$data": { "$ref": "#script" } |
50 | 63 | },
|
51 | 64 | "additionalProperties": false,
|
52 |
| - "required": [ "$ref" ] |
| 65 | + "required": [ "$data" ] |
53 | 66 | },
|
54 | 67 | "parallel": {
|
| 68 | + "id": "#parallel", |
55 | 69 | "description": "scripts in the object are executed in parallel, property names should not start with $",
|
56 | 70 | "type": "object",
|
57 | 71 | "patternProperties": {
|
58 |
| - "^[^$]": { "$ref": "#" } |
| 72 | + "^[^$]": { "$ref": "#script" } |
59 | 73 | },
|
60 | 74 | "additionalProperties": false
|
61 | 75 | },
|
62 | 76 | "serial": {
|
| 77 | + "id": "#serial", |
63 | 78 | "description": "scripts in array are executed sequentially",
|
64 | 79 | "type": "array",
|
65 |
| - "items": { "$ref": "#" } |
| 80 | + "items": { "$ref": "#script" } |
66 | 81 | },
|
67 | 82 | "scalar": {
|
| 83 | + "id": "#scalar", |
68 | 84 | "type": [ "string", "number", "boolean", "null" ]
|
69 | 85 | }
|
70 | 86 | }
|
|
0 commit comments