-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.schema.json
More file actions
119 lines (119 loc) · 3.86 KB
/
template.schema.json
File metadata and controls
119 lines (119 loc) · 3.86 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"title": "A schema for open-interlocking template.",
"type": "object",
"definitions": {
"signal_relation": {
"type": "string",
"pattern": "(W\\d+)|(B\\d+[a-z]+)"
},
"switches_relation": {
"type": "string",
"pattern": "(W\\d+)|(S\\d+)|(B\\d+)"
},
"block_relation": {
"type": "string",
"pattern": "(W\\d+)|(S\\d+)"
},
"distant_signal": {
"type": "string",
"pattern": "V\\d+"
}
},
"properties": {
"distant_signals": {
"type": "object",
"additionalProperties": {
"type": "null"
}
},
"signals": {
"type": "object",
"additionalProperties": {
"type": ["object", "null"],
"properties": {
"distant_signals": {
"type": "array",
"additionalItems": {
"ref": "#/definitions/distant_signal"
}
}
},
"additionalProperties": false
}
},
"switches": {
"type": "object",
"additionalProperties": {
"type": "null"
}
},
"blocks": {
"type": "object",
"additionalProperties": {
"type": "null"
}
},
"subblocks": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"start": {
"$ref": "#/definitions/block_relation"
},
"end": {
"$ref": "#/definitions/block_relation"
},
"distant_signals": {
"type": "array",
"additionalItems": {
"$ref": "#/definitions/distant_signal"
}
}
},
"required": ["start", "end"]
}
},
"relations": {
"type": "object",
"properties": {
"signals": {
"additionalProperties": {
"type": "object",
"properties": {
"following": {
"$ref": "#/definitions/signal_relation"
},
"previous": {
"$ref": "#/definitions/signal_relation"
}
}
}
},
"switches": {
"additionalProperties": {
"type": "object",
"properties": {
"previous": {
"$ref": "#/definitions/switches_relation"
},
"following_straight_blade": {
"$ref": "#/definitions/switches_relation"
},
"following_bending_blade": {
"$ref": "#/definitions/switches_relation"
},
"following_different_direction": {
"type": "string",
"pattern": "B\\d+"
}
},
"required": ["previous", "following_straight_blade", "following_bending_blade"]
}
}
}
}
}
}