|
1 | 1 | {
|
2 |
| - "id": "evaluate.json#", |
3 |
| - "$schema": "https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/json-schema-v5.json#", |
| 2 | + "id": "http://json-script.com/schema/evaluate.json#", |
| 3 | + "$schema": "http://json-script.com/schema/evaluate_metaschema.json#", |
4 | 4 | "description": "schema with custom keywords that evaluates JSON script. It assumes that the script is valid",
|
5 | 5 | "switch": [
|
6 | 6 | {
|
|
11 | 11 | "allOf":[
|
12 | 12 | {
|
13 | 13 | "title": "evaluate properties",
|
14 |
| - "description": "evaluates all properties using the same schema, properties-scripts are replaced with promises", |
| 14 | + "description": "evaluates all properties using the same schema, properties-scripts are replaced with returned data or 'promise'", |
15 | 15 | "additionalProperties": { "$ref": "#" }
|
16 | 16 | },
|
17 | 17 | {
|
18 | 18 | "title": "validate keywords",
|
19 | 19 | "description": "validates script keyword values or chains promises to validate resolved values of keywords",
|
20 | 20 | "properties": {
|
21 |
| - "$func": { "thenValue": { "type": "string" } }, |
22 |
| - "$object": { "thenValue": { "type": "string" } }, |
23 |
| - "$method": { "thenValue": { "type": "string" } }, |
24 |
| - "$ref": { "thenValue": { "type": "string" } }, |
25 |
| - "$data": { "thenValue": { "type": "string" } }, |
26 |
| - "$args": { "thenValue": { "type": [ "array", "object" ] } } |
| 21 | + "$func": { "thenValue": { "$ref": "#uuidOrIdentifier" } }, |
| 22 | + "$object": { "thenValue": { "$ref": "#uuidOrIdentifier" } }, |
| 23 | + "$method": { "thenValue": { "$ref": "#identifier" } }, |
| 24 | + "$ref": { "thenValue": { "$ref": "#jsonPointer" } }, |
| 25 | + "$data": { "thenValue": { "$ref": "#anyJsonPointer" } } |
27 | 26 | }
|
28 | 27 | },
|
29 | 28 | {
|
|
32 | 31 | "switch": [
|
33 | 32 | {
|
34 | 33 | "if": { "required": [ "$func" ] },
|
35 |
| - "then": { "applyFunc": [ "0/$func", "0/$args" ] } |
| 34 | + "then": { "applyFunc": true } |
36 | 35 | },
|
37 | 36 | {
|
38 | 37 | "if": { "required": [ "$method" ] },
|
39 |
| - "then": { "applyMethod": [ "0/$object", "0/$method", "0/$args" ] } |
| 38 | + "then": { "applyMethod": true } |
40 | 39 | },
|
41 | 40 | {
|
42 | 41 | "if": { "required": [ "$ref" ] },
|
43 |
| - "then": { "getRef": [ "0/$ref" ] } |
| 42 | + "then": { "getRef": true } |
44 | 43 | },
|
45 | 44 | {
|
46 | 45 | "if": { "required": [ "$data" ] },
|
47 |
| - "then": { "getData": [ "0/$data" ] } |
| 46 | + "then": { "getData": true } |
48 | 47 | }
|
49 | 48 | ]
|
50 | 49 | }
|
|
56 | 55 | "then": {
|
57 | 56 | "title": "sequential execution",
|
58 | 57 | "description": "queues items so that the next promise is created only after the previous one is resolved",
|
59 |
| - "queueItems": [ "0/" ] |
| 58 | + "queueItems": true |
60 | 59 | }
|
61 | 60 | }
|
62 |
| - ] |
| 61 | + ], |
| 62 | + "definitions": { |
| 63 | + "identifier": { |
| 64 | + "id": "#identifier", |
| 65 | + "type": "string", |
| 66 | + "pattern": "^[A-Za-z$_][A-Za-z$_0-9]*$" |
| 67 | + }, |
| 68 | + "uuidOrIdentifier": { |
| 69 | + "id": "#uuidOrIdentifier", |
| 70 | + "type": "string", |
| 71 | + "anyOf": [ |
| 72 | + { "pattern": "^[A-Za-z$_][A-Za-z$_0-9]*$" }, |
| 73 | + { "format": "uuid" } |
| 74 | + ] |
| 75 | + }, |
| 76 | + "jsonPointer": { |
| 77 | + "id": "#jsonPointer", |
| 78 | + "type": "string", |
| 79 | + "format": "json-pointer" |
| 80 | + }, |
| 81 | + "anyJsonPointer": { |
| 82 | + "id": "#anyJsonPointer", |
| 83 | + "type": "string", |
| 84 | + "anyOf": [ |
| 85 | + { "format": "json-pointer" }, |
| 86 | + { "format": "relative-json-pointer" } |
| 87 | + ] |
| 88 | + } |
| 89 | + } |
63 | 90 | }
|
0 commit comments