Skip to content

Commit 844518f

Browse files
committed
schema: top level script cant be scalar or instruction, should be parallel/serial execution
1 parent 57dd090 commit 844518f

File tree

3 files changed

+41
-28
lines changed

3 files changed

+41
-28
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsonscript",
3-
"version": "0.0.5",
3+
"version": "0.1.0",
44
"description": "Platform independent asynchronous and concurrent scripting language using JSON format",
55
"main": "index.js",
66
"scripts": {

schema.json

+39-23
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,86 @@
11
{
22
"id": "jsonscript.json#",
33
"$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",
56
"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" }
139
],
1410
"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+
},
1524
"func": {
25+
"id": "#func",
1626
"description": "call to external function, $func value should evaluate to a string, $args should evaluate to array or object",
1727
"type": "object",
1828
"properties": {
19-
"$func": { "$ref": "#" },
20-
"$args": { "$ref": "#" }
29+
"$func": { "$ref": "#script" },
30+
"$args": { "$ref": "#script" }
2131
},
2232
"additionalProperties": false,
2333
"required": [ "$func" ]
2434
},
2535
"method": {
36+
"id": "#method",
2637
"description": "call to external object, $func value should evaluate to a string, $args should evaluate to array or object",
2738
"type": "object",
2839
"properties": {
29-
"$object": { "$ref": "#" },
30-
"$method": { "$ref": "#" },
31-
"$args": { "$ref": "#" }
40+
"$object": { "$ref": "#script" },
41+
"$method": { "$ref": "#script" },
42+
"$args": { "$ref": "#script" }
3243
},
3344
"additionalProperties": false,
3445
"required": [ "$method", "$object" ]
3546
},
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",
3850
"type": "object",
3951
"properties": {
40-
"$data": { "$ref": "#" }
52+
"$ref": { "$ref": "#script" }
4153
},
4254
"additionalProperties": false,
43-
"required": [ "$data" ]
55+
"required": [ "$ref" ]
4456
},
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",
4760
"type": "object",
4861
"properties": {
49-
"$ref": { "$ref": "#" }
62+
"$data": { "$ref": "#script" }
5063
},
5164
"additionalProperties": false,
52-
"required": [ "$ref" ]
65+
"required": [ "$data" ]
5366
},
5467
"parallel": {
68+
"id": "#parallel",
5569
"description": "scripts in the object are executed in parallel, property names should not start with $",
5670
"type": "object",
5771
"patternProperties": {
58-
"^[^$]": { "$ref": "#" }
72+
"^[^$]": { "$ref": "#script" }
5973
},
6074
"additionalProperties": false
6175
},
6276
"serial": {
77+
"id": "#serial",
6378
"description": "scripts in array are executed sequentially",
6479
"type": "array",
65-
"items": { "$ref": "#" }
80+
"items": { "$ref": "#script" }
6681
},
6782
"scalar": {
83+
"id": "#scalar",
6884
"type": [ "string", "number", "boolean", "null" ]
6985
}
7086
}

spec/scripts/func.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
[
22
{
33
"description": "$func call",
4-
"schemas": [
5-
{ "$ref": "jsonscript.json#" },
6-
{ "$ref": "jsonscript.json#/definitions/func" }
7-
],
4+
"schema": { "$ref": "jsonscript.json#func" },
85
"tests": [
96
{
107
"description": "with args",

0 commit comments

Comments
 (0)