-
Notifications
You must be signed in to change notification settings - Fork 0
/
internal_state.schema
61 lines (61 loc) · 1.52 KB
/
internal_state.schema
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/InternalState",
"InternalState": {
"Parameters": {
"type": "object",
"additionalProperties": false,
"properties": {
"a": {
"type": "integer"
},
"b": {
"type": "number"
}
},
"required": [
"a",
"b"
],
"title": "Parameters"
},
"Variables": {
"type": "object",
"additionalProperties": false,
"properties": {
"size": {
"type": "integer"
},
"mvector": {
"$ref": "#/definitions/complex"
},
"mmap": {
"$ref": "#/definitions/complex"
}
},
"required": [
"mmap",
"mvector",
"size"
],
"title": "Variables"
},
"complex": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string"
},
"include": {
"type": "string"
}
},
"required": [
"include",
"type"
],
"title": "complex"
}
}
}