rsmp 0.47.0 → 0.48.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (426) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/copilot-setup-steps.yml +1 -1
  3. data/.github/workflows/rubocop.yaml +1 -1
  4. data/.github/workflows/sus.yaml +1 -1
  5. data/CHANGELOG.md +10 -0
  6. data/Gemfile.lock +5 -5
  7. data/README.md +3 -1
  8. data/documentation/cli.md +225 -0
  9. data/documentation/configuration.md +57 -0
  10. data/lib/rsmp/cli/configuration.rb +30 -0
  11. data/lib/rsmp/cli.rb +18 -45
  12. data/lib/rsmp/collect/command_matcher.rb +13 -4
  13. data/lib/rsmp/collect/status_matcher.rb +14 -4
  14. data/lib/rsmp/command_list.rb +1 -1
  15. data/lib/rsmp/convert/export/json_schema/index.rb +64 -0
  16. data/lib/rsmp/convert/export/json_schema/items.rb +9 -1
  17. data/lib/rsmp/convert/export/json_schema/outputs.rb +65 -25
  18. data/lib/rsmp/convert/export/json_schema/values.rb +40 -11
  19. data/lib/rsmp/convert/export/json_schema.rb +3 -1
  20. data/lib/rsmp/message/sxl_codec.rb +194 -0
  21. data/lib/rsmp/message.rb +2 -0
  22. data/lib/rsmp/node/site/connections.rb +80 -0
  23. data/lib/rsmp/node/site/site.rb +21 -35
  24. data/lib/rsmp/node/supervisor/supervisor.rb +42 -0
  25. data/lib/rsmp/options/schemas/site.json +3 -0
  26. data/lib/rsmp/options/schemas/supervisor.json +1 -0
  27. data/lib/rsmp/options/site_options.rb +30 -21
  28. data/lib/rsmp/options/supervisor_options.rb +1 -0
  29. data/lib/rsmp/proxy/modules/receive.rb +3 -1
  30. data/lib/rsmp/proxy/modules/send.rb +26 -14
  31. data/lib/rsmp/proxy/proxy.rb +17 -0
  32. data/lib/rsmp/proxy/site/connection.rb +79 -0
  33. data/lib/rsmp/proxy/site/modules/commands.rb +24 -1
  34. data/lib/rsmp/proxy/site/site_proxy.rb +6 -15
  35. data/lib/rsmp/proxy/supervisor/modules/commands.rb +55 -0
  36. data/lib/rsmp/proxy/supervisor/modules/status.rb +13 -104
  37. data/lib/rsmp/proxy/supervisor/modules/status_updates.rb +148 -0
  38. data/lib/rsmp/proxy/supervisor/supervisor_proxy.rb +19 -0
  39. data/lib/rsmp/schema.rb +38 -1
  40. data/lib/rsmp/tlc/detector_logic.rb +2 -2
  41. data/lib/rsmp/tlc/modules/helpers.rb +0 -22
  42. data/lib/rsmp/tlc/modules/inputs.rb +4 -3
  43. data/lib/rsmp/tlc/modules/modes.rb +2 -2
  44. data/lib/rsmp/tlc/modules/plans.rb +7 -3
  45. data/lib/rsmp/tlc/modules/system.rb +1 -1
  46. data/lib/rsmp/tlc/proxy/control.rb +19 -19
  47. data/lib/rsmp/tlc/proxy/detectors.rb +3 -3
  48. data/lib/rsmp/tlc/proxy/io.rb +15 -12
  49. data/lib/rsmp/tlc/proxy/plans.rb +14 -14
  50. data/lib/rsmp/tlc/proxy/status.rb +9 -5
  51. data/lib/rsmp/tlc/proxy/system.rb +12 -6
  52. data/lib/rsmp/tlc/signal_group.rb +2 -2
  53. data/lib/rsmp/tlc/supervisor_interface.rb +42 -0
  54. data/lib/rsmp/tlc/traffic_controller_site.rb +1 -18
  55. data/lib/rsmp/version.rb +1 -1
  56. data/lib/rsmp.rb +4 -0
  57. data/schemas/core/3.1.4/command_response.json +11 -0
  58. data/schemas/core/3.1.5/command_response.json +11 -0
  59. data/schemas/core/3.2.0/command_response.json +11 -0
  60. data/schemas/core/3.2.1/command_response.json +11 -0
  61. data/schemas/core/3.2.2/command_response.json +11 -0
  62. data/schemas/core/3.3.0/command_response.json +11 -0
  63. data/schemas/tlc/1.0.10/alarms/A0008.json +21 -15
  64. data/schemas/tlc/1.0.10/alarms/A0201.json +26 -20
  65. data/schemas/tlc/1.0.10/alarms/A0202.json +26 -20
  66. data/schemas/tlc/1.0.10/alarms/A0301.json +69 -63
  67. data/schemas/tlc/1.0.10/alarms/A0302.json +87 -81
  68. data/schemas/tlc/1.0.10/commands/M0001.json +66 -60
  69. data/schemas/tlc/1.0.10/commands/M0002.json +48 -42
  70. data/schemas/tlc/1.0.10/commands/M0003.json +48 -42
  71. data/schemas/tlc/1.0.10/commands/M0004.json +35 -29
  72. data/schemas/tlc/1.0.10/commands/M0005.json +48 -42
  73. data/schemas/tlc/1.0.10/commands/M0006.json +48 -42
  74. data/schemas/tlc/1.0.10/commands/M0007.json +35 -29
  75. data/schemas/tlc/1.0.10/commands/M0008.json +48 -42
  76. data/schemas/tlc/1.0.10/commands/M0010.json +35 -29
  77. data/schemas/tlc/1.0.10/commands/M0011.json +35 -29
  78. data/schemas/tlc/1.0.10/commands/M0012.json +35 -29
  79. data/schemas/tlc/1.0.10/commands/M0013.json +35 -29
  80. data/schemas/tlc/1.0.10/commands/M0019.json +61 -55
  81. data/schemas/tlc/1.0.10/commands/M0103.json +51 -45
  82. data/schemas/tlc/1.0.10/commands/M0104.json +100 -94
  83. data/schemas/tlc/1.0.10/commands/command_requests.json +995 -1
  84. data/schemas/tlc/1.0.10/defs/guards.json +19 -0
  85. data/schemas/tlc/1.0.10/sxl.yaml +56 -56
  86. data/schemas/tlc/1.0.10/sxl_index.json +226 -244
  87. data/schemas/tlc/1.0.13/alarms/A0008.json +21 -15
  88. data/schemas/tlc/1.0.13/alarms/A0201.json +26 -20
  89. data/schemas/tlc/1.0.13/alarms/A0202.json +26 -20
  90. data/schemas/tlc/1.0.13/alarms/A0301.json +69 -63
  91. data/schemas/tlc/1.0.13/alarms/A0302.json +87 -81
  92. data/schemas/tlc/1.0.13/commands/M0001.json +66 -60
  93. data/schemas/tlc/1.0.13/commands/M0002.json +48 -42
  94. data/schemas/tlc/1.0.13/commands/M0003.json +48 -42
  95. data/schemas/tlc/1.0.13/commands/M0004.json +35 -29
  96. data/schemas/tlc/1.0.13/commands/M0005.json +48 -42
  97. data/schemas/tlc/1.0.13/commands/M0006.json +48 -42
  98. data/schemas/tlc/1.0.13/commands/M0007.json +35 -29
  99. data/schemas/tlc/1.0.13/commands/M0008.json +48 -42
  100. data/schemas/tlc/1.0.13/commands/M0010.json +35 -29
  101. data/schemas/tlc/1.0.13/commands/M0011.json +35 -29
  102. data/schemas/tlc/1.0.13/commands/M0012.json +35 -29
  103. data/schemas/tlc/1.0.13/commands/M0013.json +35 -29
  104. data/schemas/tlc/1.0.13/commands/M0014.json +48 -42
  105. data/schemas/tlc/1.0.13/commands/M0015.json +48 -42
  106. data/schemas/tlc/1.0.13/commands/M0016.json +35 -29
  107. data/schemas/tlc/1.0.13/commands/M0017.json +35 -29
  108. data/schemas/tlc/1.0.13/commands/M0018.json +48 -42
  109. data/schemas/tlc/1.0.13/commands/M0019.json +61 -55
  110. data/schemas/tlc/1.0.13/commands/M0103.json +51 -45
  111. data/schemas/tlc/1.0.13/commands/M0104.json +100 -94
  112. data/schemas/tlc/1.0.13/commands/command_requests.json +1293 -1
  113. data/schemas/tlc/1.0.13/defs/guards.json +19 -0
  114. data/schemas/tlc/1.0.13/sxl.yaml +63 -63
  115. data/schemas/tlc/1.0.13/sxl_index.json +280 -298
  116. data/schemas/tlc/1.0.14/alarms/A0008.json +21 -15
  117. data/schemas/tlc/1.0.14/alarms/A0201.json +26 -20
  118. data/schemas/tlc/1.0.14/alarms/A0202.json +26 -20
  119. data/schemas/tlc/1.0.14/alarms/A0301.json +69 -63
  120. data/schemas/tlc/1.0.14/alarms/A0302.json +87 -81
  121. data/schemas/tlc/1.0.14/commands/M0001.json +66 -60
  122. data/schemas/tlc/1.0.14/commands/M0002.json +48 -42
  123. data/schemas/tlc/1.0.14/commands/M0003.json +48 -42
  124. data/schemas/tlc/1.0.14/commands/M0004.json +35 -29
  125. data/schemas/tlc/1.0.14/commands/M0005.json +48 -42
  126. data/schemas/tlc/1.0.14/commands/M0006.json +48 -42
  127. data/schemas/tlc/1.0.14/commands/M0007.json +35 -29
  128. data/schemas/tlc/1.0.14/commands/M0008.json +48 -42
  129. data/schemas/tlc/1.0.14/commands/M0010.json +35 -29
  130. data/schemas/tlc/1.0.14/commands/M0011.json +35 -29
  131. data/schemas/tlc/1.0.14/commands/M0012.json +35 -29
  132. data/schemas/tlc/1.0.14/commands/M0013.json +35 -29
  133. data/schemas/tlc/1.0.14/commands/M0014.json +48 -42
  134. data/schemas/tlc/1.0.14/commands/M0015.json +48 -42
  135. data/schemas/tlc/1.0.14/commands/M0016.json +35 -29
  136. data/schemas/tlc/1.0.14/commands/M0017.json +35 -29
  137. data/schemas/tlc/1.0.14/commands/M0018.json +48 -42
  138. data/schemas/tlc/1.0.14/commands/M0019.json +61 -55
  139. data/schemas/tlc/1.0.14/commands/M0103.json +51 -45
  140. data/schemas/tlc/1.0.14/commands/M0104.json +100 -94
  141. data/schemas/tlc/1.0.14/commands/command_requests.json +1293 -1
  142. data/schemas/tlc/1.0.14/defs/guards.json +19 -0
  143. data/schemas/tlc/1.0.14/sxl.yaml +63 -63
  144. data/schemas/tlc/1.0.14/sxl_index.json +304 -322
  145. data/schemas/tlc/1.0.15/alarms/A0008.json +21 -15
  146. data/schemas/tlc/1.0.15/alarms/A0201.json +26 -20
  147. data/schemas/tlc/1.0.15/alarms/A0202.json +26 -20
  148. data/schemas/tlc/1.0.15/alarms/A0301.json +69 -63
  149. data/schemas/tlc/1.0.15/alarms/A0302.json +87 -81
  150. data/schemas/tlc/1.0.15/commands/M0001.json +66 -60
  151. data/schemas/tlc/1.0.15/commands/M0002.json +48 -42
  152. data/schemas/tlc/1.0.15/commands/M0003.json +48 -42
  153. data/schemas/tlc/1.0.15/commands/M0004.json +35 -29
  154. data/schemas/tlc/1.0.15/commands/M0005.json +48 -42
  155. data/schemas/tlc/1.0.15/commands/M0006.json +48 -42
  156. data/schemas/tlc/1.0.15/commands/M0007.json +35 -29
  157. data/schemas/tlc/1.0.15/commands/M0008.json +48 -42
  158. data/schemas/tlc/1.0.15/commands/M0010.json +35 -29
  159. data/schemas/tlc/1.0.15/commands/M0011.json +35 -29
  160. data/schemas/tlc/1.0.15/commands/M0012.json +35 -29
  161. data/schemas/tlc/1.0.15/commands/M0013.json +35 -29
  162. data/schemas/tlc/1.0.15/commands/M0014.json +48 -42
  163. data/schemas/tlc/1.0.15/commands/M0015.json +48 -42
  164. data/schemas/tlc/1.0.15/commands/M0016.json +35 -29
  165. data/schemas/tlc/1.0.15/commands/M0017.json +35 -29
  166. data/schemas/tlc/1.0.15/commands/M0018.json +48 -42
  167. data/schemas/tlc/1.0.15/commands/M0019.json +61 -55
  168. data/schemas/tlc/1.0.15/commands/M0020.json +61 -55
  169. data/schemas/tlc/1.0.15/commands/M0021.json +35 -29
  170. data/schemas/tlc/1.0.15/commands/M0103.json +51 -45
  171. data/schemas/tlc/1.0.15/commands/M0104.json +100 -94
  172. data/schemas/tlc/1.0.15/commands/command_requests.json +1425 -1
  173. data/schemas/tlc/1.0.15/defs/guards.json +19 -0
  174. data/schemas/tlc/1.0.15/sxl.yaml +66 -66
  175. data/schemas/tlc/1.0.15/sxl_index.json +330 -350
  176. data/schemas/tlc/1.0.7/alarms/A0008.json +21 -15
  177. data/schemas/tlc/1.0.7/alarms/A0201.json +26 -20
  178. data/schemas/tlc/1.0.7/alarms/A0202.json +26 -20
  179. data/schemas/tlc/1.0.7/alarms/A0301.json +69 -63
  180. data/schemas/tlc/1.0.7/alarms/A0302.json +87 -81
  181. data/schemas/tlc/1.0.7/commands/M0001.json +66 -60
  182. data/schemas/tlc/1.0.7/commands/M0002.json +48 -42
  183. data/schemas/tlc/1.0.7/commands/M0003.json +48 -42
  184. data/schemas/tlc/1.0.7/commands/M0004.json +35 -29
  185. data/schemas/tlc/1.0.7/commands/M0005.json +48 -42
  186. data/schemas/tlc/1.0.7/commands/M0006.json +48 -42
  187. data/schemas/tlc/1.0.7/commands/M0007.json +35 -29
  188. data/schemas/tlc/1.0.7/commands/M0008.json +48 -42
  189. data/schemas/tlc/1.0.7/commands/M0010.json +35 -29
  190. data/schemas/tlc/1.0.7/commands/M0011.json +35 -29
  191. data/schemas/tlc/1.0.7/commands/M0019.json +61 -55
  192. data/schemas/tlc/1.0.7/commands/M0103.json +51 -45
  193. data/schemas/tlc/1.0.7/commands/M0104.json +100 -94
  194. data/schemas/tlc/1.0.7/commands/command_requests.json +895 -1
  195. data/schemas/tlc/1.0.7/defs/guards.json +19 -0
  196. data/schemas/tlc/1.0.7/sxl.yaml +58 -58
  197. data/schemas/tlc/1.0.7/sxl_index.json +228 -246
  198. data/schemas/tlc/1.0.8/alarms/A0008.json +21 -15
  199. data/schemas/tlc/1.0.8/alarms/A0201.json +26 -20
  200. data/schemas/tlc/1.0.8/alarms/A0202.json +26 -20
  201. data/schemas/tlc/1.0.8/alarms/A0301.json +69 -63
  202. data/schemas/tlc/1.0.8/alarms/A0302.json +87 -81
  203. data/schemas/tlc/1.0.8/commands/M0001.json +66 -60
  204. data/schemas/tlc/1.0.8/commands/M0002.json +48 -42
  205. data/schemas/tlc/1.0.8/commands/M0003.json +48 -42
  206. data/schemas/tlc/1.0.8/commands/M0004.json +35 -29
  207. data/schemas/tlc/1.0.8/commands/M0005.json +48 -42
  208. data/schemas/tlc/1.0.8/commands/M0006.json +48 -42
  209. data/schemas/tlc/1.0.8/commands/M0007.json +35 -29
  210. data/schemas/tlc/1.0.8/commands/M0008.json +48 -42
  211. data/schemas/tlc/1.0.8/commands/M0010.json +35 -29
  212. data/schemas/tlc/1.0.8/commands/M0011.json +35 -29
  213. data/schemas/tlc/1.0.8/commands/M0012.json +35 -29
  214. data/schemas/tlc/1.0.8/commands/M0013.json +35 -29
  215. data/schemas/tlc/1.0.8/commands/M0019.json +61 -55
  216. data/schemas/tlc/1.0.8/commands/M0103.json +51 -45
  217. data/schemas/tlc/1.0.8/commands/M0104.json +100 -94
  218. data/schemas/tlc/1.0.8/commands/command_requests.json +995 -1
  219. data/schemas/tlc/1.0.8/defs/guards.json +19 -0
  220. data/schemas/tlc/1.0.8/sxl.yaml +56 -56
  221. data/schemas/tlc/1.0.8/sxl_index.json +226 -244
  222. data/schemas/tlc/1.0.9/alarms/A0008.json +21 -15
  223. data/schemas/tlc/1.0.9/alarms/A0201.json +26 -20
  224. data/schemas/tlc/1.0.9/alarms/A0202.json +26 -20
  225. data/schemas/tlc/1.0.9/alarms/A0301.json +69 -63
  226. data/schemas/tlc/1.0.9/alarms/A0302.json +87 -81
  227. data/schemas/tlc/1.0.9/commands/M0001.json +66 -60
  228. data/schemas/tlc/1.0.9/commands/M0002.json +48 -42
  229. data/schemas/tlc/1.0.9/commands/M0003.json +48 -42
  230. data/schemas/tlc/1.0.9/commands/M0004.json +35 -29
  231. data/schemas/tlc/1.0.9/commands/M0005.json +48 -42
  232. data/schemas/tlc/1.0.9/commands/M0006.json +48 -42
  233. data/schemas/tlc/1.0.9/commands/M0007.json +35 -29
  234. data/schemas/tlc/1.0.9/commands/M0008.json +48 -42
  235. data/schemas/tlc/1.0.9/commands/M0010.json +35 -29
  236. data/schemas/tlc/1.0.9/commands/M0011.json +35 -29
  237. data/schemas/tlc/1.0.9/commands/M0012.json +35 -29
  238. data/schemas/tlc/1.0.9/commands/M0013.json +35 -29
  239. data/schemas/tlc/1.0.9/commands/M0019.json +61 -55
  240. data/schemas/tlc/1.0.9/commands/M0103.json +51 -45
  241. data/schemas/tlc/1.0.9/commands/M0104.json +100 -94
  242. data/schemas/tlc/1.0.9/commands/command_requests.json +995 -1
  243. data/schemas/tlc/1.0.9/defs/guards.json +19 -0
  244. data/schemas/tlc/1.0.9/sxl.yaml +56 -56
  245. data/schemas/tlc/1.0.9/sxl_index.json +226 -244
  246. data/schemas/tlc/1.1.0/alarms/A0007.json +25 -19
  247. data/schemas/tlc/1.1.0/alarms/A0008.json +21 -15
  248. data/schemas/tlc/1.1.0/alarms/A0201.json +26 -20
  249. data/schemas/tlc/1.1.0/alarms/A0202.json +26 -20
  250. data/schemas/tlc/1.1.0/alarms/A0301.json +69 -63
  251. data/schemas/tlc/1.1.0/alarms/A0302.json +87 -81
  252. data/schemas/tlc/1.1.0/alarms/A0303.json +69 -63
  253. data/schemas/tlc/1.1.0/alarms/A0304.json +87 -81
  254. data/schemas/tlc/1.1.0/commands/M0001.json +66 -60
  255. data/schemas/tlc/1.1.0/commands/M0002.json +48 -42
  256. data/schemas/tlc/1.1.0/commands/M0003.json +48 -42
  257. data/schemas/tlc/1.1.0/commands/M0004.json +35 -29
  258. data/schemas/tlc/1.1.0/commands/M0005.json +48 -42
  259. data/schemas/tlc/1.1.0/commands/M0006.json +48 -42
  260. data/schemas/tlc/1.1.0/commands/M0007.json +35 -29
  261. data/schemas/tlc/1.1.0/commands/M0008.json +48 -42
  262. data/schemas/tlc/1.1.0/commands/M0010.json +35 -29
  263. data/schemas/tlc/1.1.0/commands/M0011.json +35 -29
  264. data/schemas/tlc/1.1.0/commands/M0012.json +35 -29
  265. data/schemas/tlc/1.1.0/commands/M0013.json +35 -29
  266. data/schemas/tlc/1.1.0/commands/M0014.json +48 -42
  267. data/schemas/tlc/1.1.0/commands/M0015.json +48 -42
  268. data/schemas/tlc/1.1.0/commands/M0016.json +35 -29
  269. data/schemas/tlc/1.1.0/commands/M0017.json +35 -29
  270. data/schemas/tlc/1.1.0/commands/M0018.json +48 -42
  271. data/schemas/tlc/1.1.0/commands/M0019.json +61 -55
  272. data/schemas/tlc/1.1.0/commands/M0020.json +61 -55
  273. data/schemas/tlc/1.1.0/commands/M0021.json +35 -29
  274. data/schemas/tlc/1.1.0/commands/M0022.json +194 -188
  275. data/schemas/tlc/1.1.0/commands/M0023.json +35 -29
  276. data/schemas/tlc/1.1.0/commands/M0103.json +51 -45
  277. data/schemas/tlc/1.1.0/commands/M0104.json +100 -94
  278. data/schemas/tlc/1.1.0/commands/command_requests.json +1525 -1
  279. data/schemas/tlc/1.1.0/defs/guards.json +19 -0
  280. data/schemas/tlc/1.1.0/statuses/S0033.json +2 -2
  281. data/schemas/tlc/1.1.0/sxl.yaml +75 -74
  282. data/schemas/tlc/1.1.0/sxl_index.json +391 -398
  283. data/schemas/tlc/1.2.0/alarms/A0007.json +25 -19
  284. data/schemas/tlc/1.2.0/alarms/A0008.json +21 -15
  285. data/schemas/tlc/1.2.0/alarms/A0201.json +26 -20
  286. data/schemas/tlc/1.2.0/alarms/A0202.json +26 -20
  287. data/schemas/tlc/1.2.0/alarms/A0301.json +69 -63
  288. data/schemas/tlc/1.2.0/alarms/A0302.json +87 -81
  289. data/schemas/tlc/1.2.0/alarms/A0303.json +69 -63
  290. data/schemas/tlc/1.2.0/alarms/A0304.json +87 -81
  291. data/schemas/tlc/1.2.0/commands/M0001.json +66 -60
  292. data/schemas/tlc/1.2.0/commands/M0002.json +48 -42
  293. data/schemas/tlc/1.2.0/commands/M0003.json +48 -42
  294. data/schemas/tlc/1.2.0/commands/M0004.json +35 -29
  295. data/schemas/tlc/1.2.0/commands/M0005.json +48 -42
  296. data/schemas/tlc/1.2.0/commands/M0006.json +48 -42
  297. data/schemas/tlc/1.2.0/commands/M0007.json +35 -29
  298. data/schemas/tlc/1.2.0/commands/M0008.json +48 -42
  299. data/schemas/tlc/1.2.0/commands/M0010.json +35 -29
  300. data/schemas/tlc/1.2.0/commands/M0011.json +35 -29
  301. data/schemas/tlc/1.2.0/commands/M0012.json +35 -29
  302. data/schemas/tlc/1.2.0/commands/M0013.json +35 -29
  303. data/schemas/tlc/1.2.0/commands/M0014.json +48 -42
  304. data/schemas/tlc/1.2.0/commands/M0015.json +48 -42
  305. data/schemas/tlc/1.2.0/commands/M0016.json +35 -29
  306. data/schemas/tlc/1.2.0/commands/M0017.json +35 -29
  307. data/schemas/tlc/1.2.0/commands/M0018.json +48 -42
  308. data/schemas/tlc/1.2.0/commands/M0019.json +61 -55
  309. data/schemas/tlc/1.2.0/commands/M0020.json +61 -55
  310. data/schemas/tlc/1.2.0/commands/M0021.json +35 -29
  311. data/schemas/tlc/1.2.0/commands/M0022.json +194 -188
  312. data/schemas/tlc/1.2.0/commands/M0023.json +35 -29
  313. data/schemas/tlc/1.2.0/commands/M0103.json +51 -45
  314. data/schemas/tlc/1.2.0/commands/M0104.json +100 -94
  315. data/schemas/tlc/1.2.0/commands/command_requests.json +1525 -1
  316. data/schemas/tlc/1.2.0/defs/guards.json +19 -0
  317. data/schemas/tlc/1.2.0/statuses/S0033.json +2 -2
  318. data/schemas/tlc/1.2.0/sxl.yaml +77 -76
  319. data/schemas/tlc/1.2.0/sxl_index.json +401 -397
  320. data/schemas/tlc/1.2.1/alarms/A0007.json +25 -19
  321. data/schemas/tlc/1.2.1/alarms/A0008.json +21 -15
  322. data/schemas/tlc/1.2.1/alarms/A0201.json +26 -20
  323. data/schemas/tlc/1.2.1/alarms/A0202.json +26 -20
  324. data/schemas/tlc/1.2.1/alarms/A0301.json +69 -63
  325. data/schemas/tlc/1.2.1/alarms/A0302.json +87 -81
  326. data/schemas/tlc/1.2.1/alarms/A0303.json +69 -63
  327. data/schemas/tlc/1.2.1/alarms/A0304.json +87 -81
  328. data/schemas/tlc/1.2.1/commands/M0001.json +66 -60
  329. data/schemas/tlc/1.2.1/commands/M0002.json +48 -42
  330. data/schemas/tlc/1.2.1/commands/M0003.json +48 -42
  331. data/schemas/tlc/1.2.1/commands/M0004.json +35 -29
  332. data/schemas/tlc/1.2.1/commands/M0005.json +48 -42
  333. data/schemas/tlc/1.2.1/commands/M0006.json +48 -42
  334. data/schemas/tlc/1.2.1/commands/M0007.json +35 -29
  335. data/schemas/tlc/1.2.1/commands/M0008.json +48 -42
  336. data/schemas/tlc/1.2.1/commands/M0010.json +35 -29
  337. data/schemas/tlc/1.2.1/commands/M0011.json +35 -29
  338. data/schemas/tlc/1.2.1/commands/M0012.json +35 -29
  339. data/schemas/tlc/1.2.1/commands/M0013.json +35 -29
  340. data/schemas/tlc/1.2.1/commands/M0014.json +48 -42
  341. data/schemas/tlc/1.2.1/commands/M0015.json +48 -42
  342. data/schemas/tlc/1.2.1/commands/M0016.json +35 -29
  343. data/schemas/tlc/1.2.1/commands/M0017.json +35 -29
  344. data/schemas/tlc/1.2.1/commands/M0018.json +48 -42
  345. data/schemas/tlc/1.2.1/commands/M0019.json +61 -55
  346. data/schemas/tlc/1.2.1/commands/M0020.json +61 -55
  347. data/schemas/tlc/1.2.1/commands/M0021.json +35 -29
  348. data/schemas/tlc/1.2.1/commands/M0022.json +194 -188
  349. data/schemas/tlc/1.2.1/commands/M0023.json +35 -29
  350. data/schemas/tlc/1.2.1/commands/M0103.json +51 -45
  351. data/schemas/tlc/1.2.1/commands/M0104.json +100 -94
  352. data/schemas/tlc/1.2.1/commands/command_requests.json +1525 -1
  353. data/schemas/tlc/1.2.1/defs/guards.json +19 -0
  354. data/schemas/tlc/1.2.1/statuses/S0033.json +2 -2
  355. data/schemas/tlc/1.2.1/sxl.yaml +77 -76
  356. data/schemas/tlc/1.2.1/sxl_index.json +401 -397
  357. data/schemas/tlc/1.3.0/alarms/A0007.json +25 -19
  358. data/schemas/tlc/1.3.0/alarms/A0008.json +21 -15
  359. data/schemas/tlc/1.3.0/alarms/A0201.json +26 -20
  360. data/schemas/tlc/1.3.0/alarms/A0202.json +26 -20
  361. data/schemas/tlc/1.3.0/alarms/A0301.json +69 -63
  362. data/schemas/tlc/1.3.0/alarms/A0302.json +87 -81
  363. data/schemas/tlc/1.3.0/alarms/A0303.json +70 -64
  364. data/schemas/tlc/1.3.0/alarms/A0304.json +88 -82
  365. data/schemas/tlc/1.3.0/commands/M0001.json +66 -60
  366. data/schemas/tlc/1.3.0/commands/M0002.json +48 -42
  367. data/schemas/tlc/1.3.0/commands/M0003.json +48 -42
  368. data/schemas/tlc/1.3.0/commands/M0004.json +35 -29
  369. data/schemas/tlc/1.3.0/commands/M0005.json +48 -42
  370. data/schemas/tlc/1.3.0/commands/M0006.json +48 -42
  371. data/schemas/tlc/1.3.0/commands/M0007.json +35 -29
  372. data/schemas/tlc/1.3.0/commands/M0008.json +61 -55
  373. data/schemas/tlc/1.3.0/commands/M0010.json +35 -29
  374. data/schemas/tlc/1.3.0/commands/M0011.json +35 -29
  375. data/schemas/tlc/1.3.0/commands/M0012.json +35 -29
  376. data/schemas/tlc/1.3.0/commands/M0013.json +36 -30
  377. data/schemas/tlc/1.3.0/commands/M0014.json +48 -42
  378. data/schemas/tlc/1.3.0/commands/M0015.json +48 -42
  379. data/schemas/tlc/1.3.0/commands/M0016.json +35 -29
  380. data/schemas/tlc/1.3.0/commands/M0017.json +35 -29
  381. data/schemas/tlc/1.3.0/commands/M0018.json +48 -42
  382. data/schemas/tlc/1.3.0/commands/M0019.json +61 -55
  383. data/schemas/tlc/1.3.0/commands/M0020.json +61 -55
  384. data/schemas/tlc/1.3.0/commands/M0021.json +35 -29
  385. data/schemas/tlc/1.3.0/commands/M0022.json +195 -189
  386. data/schemas/tlc/1.3.0/commands/M0023.json +35 -29
  387. data/schemas/tlc/1.3.0/commands/M0024.json +21 -15
  388. data/schemas/tlc/1.3.0/commands/M0103.json +51 -45
  389. data/schemas/tlc/1.3.0/commands/M0104.json +100 -94
  390. data/schemas/tlc/1.3.0/commands/command_requests.json +1559 -1
  391. data/schemas/tlc/1.3.0/defs/guards.json +19 -0
  392. data/schemas/tlc/1.3.0/statuses/S0001.json +4 -4
  393. data/schemas/tlc/1.3.0/statuses/S0005.json +3 -3
  394. data/schemas/tlc/1.3.0/statuses/S0006.json +2 -2
  395. data/schemas/tlc/1.3.0/statuses/S0007.json +1 -1
  396. data/schemas/tlc/1.3.0/statuses/S0008.json +1 -1
  397. data/schemas/tlc/1.3.0/statuses/S0009.json +1 -1
  398. data/schemas/tlc/1.3.0/statuses/S0010.json +1 -1
  399. data/schemas/tlc/1.3.0/statuses/S0011.json +1 -1
  400. data/schemas/tlc/1.3.0/statuses/S0012.json +1 -1
  401. data/schemas/tlc/1.3.0/statuses/S0013.json +1 -1
  402. data/schemas/tlc/1.3.0/statuses/S0014.json +1 -1
  403. data/schemas/tlc/1.3.0/statuses/S0015.json +1 -1
  404. data/schemas/tlc/1.3.0/statuses/S0016.json +1 -1
  405. data/schemas/tlc/1.3.0/statuses/S0017.json +1 -1
  406. data/schemas/tlc/1.3.0/statuses/S0019.json +1 -1
  407. data/schemas/tlc/1.3.0/statuses/S0020.json +1 -1
  408. data/schemas/tlc/1.3.0/statuses/S0025.json +2 -2
  409. data/schemas/tlc/1.3.0/statuses/S0027.json +1 -1
  410. data/schemas/tlc/1.3.0/statuses/S0032.json +2 -2
  411. data/schemas/tlc/1.3.0/statuses/S0033.json +5 -5
  412. data/schemas/tlc/1.3.0/statuses/S0034.json +1 -1
  413. data/schemas/tlc/1.3.0/statuses/S0035.json +1 -1
  414. data/schemas/tlc/1.3.0/statuses/S0091.json +1 -1
  415. data/schemas/tlc/1.3.0/statuses/S0092.json +1 -1
  416. data/schemas/tlc/1.3.0/statuses/S0096.json +6 -6
  417. data/schemas/tlc/1.3.0/statuses/S0201.json +1 -1
  418. data/schemas/tlc/1.3.0/statuses/S0202.json +1 -1
  419. data/schemas/tlc/1.3.0/statuses/S0203.json +1 -1
  420. data/schemas/tlc/1.3.0/statuses/S0204.json +9 -9
  421. data/schemas/tlc/1.3.0/statuses/S0205.json +1 -1
  422. data/schemas/tlc/1.3.0/statuses/S0206.json +1 -1
  423. data/schemas/tlc/1.3.0/statuses/S0207.json +1 -1
  424. data/schemas/tlc/1.3.0/statuses/S0208.json +9 -9
  425. data/schemas/tlc/1.3.0/sxl_index.json +408 -402
  426. metadata +8 -1
@@ -7,430 +7,412 @@
7
7
  },
8
8
  "statuses" : {
9
9
  "S0001" : {
10
- "arguments" : [
11
- "basecyclecounter",
12
- "cyclecounter",
13
- "signalgroupstatus",
14
- "stage"
15
- ]
10
+ "required" : {
11
+ "basecyclecounter" : "integer_as_string",
12
+ "cyclecounter" : "integer_as_string",
13
+ "signalgroupstatus" : "string",
14
+ "stage" : "integer_as_string"
15
+ }
16
16
  },
17
17
  "S0002" : {
18
- "arguments" : [
19
- "detectorlogicstatus"
20
- ]
18
+ "required" : {
19
+ "detectorlogicstatus" : "string"
20
+ }
21
21
  },
22
22
  "S0003" : {
23
- "arguments" : [
24
- "extendedinputstatus",
25
- "inputstatus"
26
- ]
23
+ "required" : {
24
+ "extendedinputstatus" : "string",
25
+ "inputstatus" : "string"
26
+ }
27
27
  },
28
28
  "S0004" : {
29
- "arguments" : [
30
- "extendedoutputstatus",
31
- "outputstatus"
32
- ]
29
+ "required" : {
30
+ "extendedoutputstatus" : "string",
31
+ "outputstatus" : "string"
32
+ }
33
33
  },
34
34
  "S0005" : {
35
- "arguments" : [
36
- "status"
37
- ]
35
+ "required" : {
36
+ "status" : "boolean_as_string"
37
+ }
38
38
  },
39
39
  "S0006" : {
40
- "arguments" : [
41
- "emergencystage",
42
- "status"
43
- ]
40
+ "required" : {
41
+ "emergencystage" : "integer_as_string",
42
+ "status" : "boolean_as_string"
43
+ }
44
44
  },
45
45
  "S0007" : {
46
- "arguments" : [
47
- "intersection",
48
- "status"
49
- ]
46
+ "required" : {
47
+ "intersection" : "integer_list",
48
+ "status" : "boolean_list"
49
+ }
50
50
  },
51
51
  "S0008" : {
52
- "arguments" : [
53
- "intersection",
54
- "status"
55
- ]
52
+ "required" : {
53
+ "intersection" : "integer_list",
54
+ "status" : "boolean_list"
55
+ }
56
56
  },
57
57
  "S0009" : {
58
- "arguments" : [
59
- "intersection",
60
- "status"
61
- ]
58
+ "required" : {
59
+ "intersection" : "integer_list",
60
+ "status" : "boolean_list"
61
+ }
62
62
  },
63
63
  "S0010" : {
64
- "arguments" : [
65
- "intersection",
66
- "status"
67
- ]
64
+ "required" : {
65
+ "intersection" : "integer_list",
66
+ "status" : "boolean_list"
67
+ }
68
68
  },
69
69
  "S0011" : {
70
- "arguments" : [
71
- "intersection",
72
- "status"
73
- ]
70
+ "required" : {
71
+ "intersection" : "integer_list",
72
+ "status" : "boolean_list"
73
+ }
74
74
  },
75
75
  "S0012" : {
76
- "arguments" : [
77
- "intersection",
78
- "status"
79
- ]
76
+ "required" : {
77
+ "intersection" : "integer_list",
78
+ "status" : "boolean_list"
79
+ }
80
80
  },
81
81
  "S0013" : {
82
- "arguments" : [
83
- "intersection",
84
- "status"
85
- ]
82
+ "required" : {
83
+ "intersection" : "integer_list",
84
+ "status" : "integer_list"
85
+ }
86
86
  },
87
87
  "S0014" : {
88
- "arguments" : [
89
- "status"
90
- ]
88
+ "required" : {
89
+ "status" : "integer_as_string"
90
+ }
91
91
  },
92
92
  "S0015" : {
93
- "arguments" : [
94
- "status"
95
- ]
93
+ "required" : {
94
+ "status" : "integer_as_string"
95
+ }
96
96
  },
97
97
  "S0016" : {
98
- "arguments" : [
99
- "number"
100
- ]
98
+ "required" : {
99
+ "number" : "long_as_string"
100
+ }
101
101
  },
102
102
  "S0017" : {
103
- "arguments" : [
104
- "number"
105
- ]
103
+ "required" : {
104
+ "number" : "long_as_string"
105
+ }
106
106
  },
107
107
  "S0018" : {
108
- "arguments" : [
109
- "number"
110
- ]
108
+ "required" : {
109
+ "number" : "long_as_string"
110
+ }
111
111
  },
112
112
  "S0019" : {
113
- "arguments" : [
114
- "number"
115
- ]
113
+ "required" : {
114
+ "number" : "long_as_string"
115
+ }
116
116
  },
117
117
  "S0020" : {
118
- "arguments" : [
119
- "controlmode",
120
- "intersection"
121
- ]
118
+ "required" : {
119
+ "controlmode" : "string_list",
120
+ "intersection" : "integer_list"
121
+ }
122
122
  },
123
123
  "S0021" : {
124
- "arguments" : [
125
- "detectorlogics"
126
- ]
124
+ "required" : {
125
+ "detectorlogics" : "string"
126
+ }
127
127
  },
128
128
  "S0022" : {
129
- "arguments" : [
130
- "status"
131
- ]
129
+ "required" : {
130
+ "status" : "string"
131
+ }
132
132
  },
133
133
  "S0023" : {
134
- "arguments" : [
135
- "status"
136
- ]
134
+ "required" : {
135
+ "status" : "string"
136
+ }
137
137
  },
138
138
  "S0024" : {
139
- "arguments" : [
140
- "status"
141
- ]
139
+ "required" : {
140
+ "status" : "string"
141
+ }
142
142
  },
143
143
  "S0025" : {
144
- "arguments" : [
145
- "ToGConfidence",
146
- "ToRConfidence",
147
- "likelyToGEstimate",
148
- "likelyToREstimate",
149
- "maxToGEstimate",
150
- "maxToREstimate",
151
- "minToGEstimate",
152
- "minToREstimate"
153
- ]
144
+ "required" : {
145
+ "ToGConfidence" : "integer_as_string",
146
+ "ToRConfidence" : "integer_as_string",
147
+ "likelyToGEstimate" : "timestamp",
148
+ "likelyToREstimate" : "timestamp",
149
+ "maxToGEstimate" : "timestamp",
150
+ "maxToREstimate" : "timestamp",
151
+ "minToGEstimate" : "timestamp",
152
+ "minToREstimate" : "timestamp"
153
+ }
154
154
  },
155
155
  "S0026" : {
156
- "arguments" : [
157
- "status"
158
- ]
156
+ "required" : {
157
+ "status" : "string"
158
+ }
159
159
  },
160
160
  "S0027" : {
161
- "arguments" : [
162
- "status"
163
- ]
161
+ "required" : {
162
+ "status" : "string"
163
+ }
164
164
  },
165
165
  "S0028" : {
166
- "arguments" : [
167
- "status"
168
- ]
166
+ "required" : {
167
+ "status" : "string"
168
+ }
169
169
  },
170
170
  "S0029" : {
171
- "arguments" : [
172
- "status"
173
- ]
171
+ "required" : {
172
+ "status" : "string"
173
+ }
174
174
  },
175
175
  "S0091" : {
176
- "arguments" : [
177
- "status",
178
- "user"
179
- ]
176
+ "required" : {
177
+ "status" : "string",
178
+ "user" : "string"
179
+ }
180
180
  },
181
181
  "S0092" : {
182
- "arguments" : [
183
- "status",
184
- "user"
185
- ]
182
+ "required" : {
183
+ "status" : "string",
184
+ "user" : "string"
185
+ }
186
186
  },
187
187
  "S0095" : {
188
- "arguments" : [
189
- "status"
190
- ]
188
+ "required" : {
189
+ "status" : "string"
190
+ }
191
191
  },
192
192
  "S0096" : {
193
- "arguments" : [
194
- "day",
195
- "hour",
196
- "minute",
197
- "month",
198
- "second",
199
- "year"
200
- ]
193
+ "required" : {
194
+ "day" : "integer_as_string",
195
+ "hour" : "integer_as_string",
196
+ "minute" : "integer_as_string",
197
+ "month" : "integer_as_string",
198
+ "second" : "integer_as_string",
199
+ "year" : "integer_as_string"
200
+ }
201
201
  },
202
202
  "S0201" : {
203
- "arguments" : [
204
- "starttime",
205
- "vehicles"
206
- ]
203
+ "required" : {
204
+ "starttime" : "timestamp",
205
+ "vehicles" : "long_as_string"
206
+ }
207
207
  },
208
208
  "S0202" : {
209
- "arguments" : [
210
- "speed",
211
- "starttime"
212
- ]
209
+ "required" : {
210
+ "speed" : "integer_as_string",
211
+ "starttime" : "timestamp"
212
+ }
213
213
  },
214
214
  "S0203" : {
215
- "arguments" : [
216
- "occupancy",
217
- "starttime"
218
- ]
215
+ "required" : {
216
+ "occupancy" : "integer_as_string",
217
+ "starttime" : "timestamp"
218
+ }
219
219
  },
220
220
  "S0204" : {
221
- "arguments" : [
222
- "B",
223
- "C",
224
- "F",
225
- "L",
226
- "LS",
227
- "MC",
228
- "P",
229
- "PS",
230
- "SP",
231
- "starttime"
232
- ]
221
+ "required" : {
222
+ "B" : "long_as_string",
223
+ "C" : "long_as_string",
224
+ "F" : "long_as_string",
225
+ "L" : "long_as_string",
226
+ "LS" : "long_as_string",
227
+ "MC" : "long_as_string",
228
+ "P" : "long_as_string",
229
+ "PS" : "long_as_string",
230
+ "SP" : "long_as_string",
231
+ "starttime" : "timestamp"
232
+ }
233
233
  }
234
234
  },
235
235
  "commands" : {
236
236
  "M0001" : {
237
- "arguments" : [
238
- "intersection",
239
- "securityCode",
240
- "status",
241
- "timeout"
242
- ]
237
+ "required" : {
238
+ "intersection" : "integer_list",
239
+ "securityCode" : "string_list",
240
+ "status" : "string",
241
+ "timeout" : "integer_list"
242
+ }
243
243
  },
244
244
  "M0002" : {
245
- "arguments" : [
246
- "securityCode",
247
- "status",
248
- "timeplan"
249
- ]
245
+ "required" : {
246
+ "securityCode" : "string",
247
+ "status" : "boolean_as_string",
248
+ "timeplan" : "integer_as_string"
249
+ }
250
250
  },
251
251
  "M0003" : {
252
- "arguments" : [
253
- "securityCode",
254
- "status",
255
- "traficsituation"
256
- ]
252
+ "required" : {
253
+ "securityCode" : "string",
254
+ "status" : "boolean_as_string",
255
+ "traficsituation" : "integer_as_string"
256
+ }
257
257
  },
258
258
  "M0004" : {
259
- "arguments" : [
260
- "securityCode",
261
- "status"
262
- ]
259
+ "required" : {
260
+ "securityCode" : "string",
261
+ "status" : "boolean_as_string"
262
+ }
263
263
  },
264
264
  "M0005" : {
265
- "arguments" : [
266
- "emergencyroute",
267
- "securityCode",
268
- "status"
269
- ]
265
+ "required" : {
266
+ "emergencyroute" : "integer_as_string",
267
+ "securityCode" : "string",
268
+ "status" : "boolean_as_string"
269
+ }
270
270
  },
271
271
  "M0006" : {
272
- "arguments" : [
273
- "input",
274
- "securityCode",
275
- "status"
276
- ]
272
+ "required" : {
273
+ "input" : "integer_as_string",
274
+ "securityCode" : "string",
275
+ "status" : "boolean_as_string"
276
+ }
277
277
  },
278
278
  "M0007" : {
279
- "arguments" : [
280
- "securityCode",
281
- "status"
282
- ]
279
+ "required" : {
280
+ "securityCode" : "string",
281
+ "status" : "boolean_as_string"
282
+ }
283
283
  },
284
284
  "M0008" : {
285
- "arguments" : [
286
- "mode",
287
- "securityCode",
288
- "status"
289
- ]
285
+ "required" : {
286
+ "mode" : "boolean_as_string",
287
+ "securityCode" : "string",
288
+ "status" : "boolean_as_string"
289
+ }
290
290
  },
291
291
  "M0010" : {
292
- "arguments" : [
293
- "securityCode",
294
- "status"
295
- ]
292
+ "required" : {
293
+ "securityCode" : "string",
294
+ "status" : "boolean_as_string"
295
+ }
296
296
  },
297
297
  "M0011" : {
298
- "arguments" : [
299
- "securityCode",
300
- "status"
301
- ]
298
+ "required" : {
299
+ "securityCode" : "string",
300
+ "status" : "boolean_as_string"
301
+ }
302
302
  },
303
303
  "M0012" : {
304
- "arguments" : [
305
- "securityCode",
306
- "status"
307
- ]
304
+ "required" : {
305
+ "securityCode" : "string",
306
+ "status" : "string"
307
+ }
308
308
  },
309
309
  "M0013" : {
310
- "arguments" : [
311
- "securityCode",
312
- "status"
313
- ]
310
+ "required" : {
311
+ "securityCode" : "string",
312
+ "status" : "string"
313
+ }
314
314
  },
315
315
  "M0014" : {
316
- "arguments" : [
317
- "plan",
318
- "securityCode",
319
- "status"
320
- ]
316
+ "required" : {
317
+ "plan" : "integer_as_string",
318
+ "securityCode" : "string",
319
+ "status" : "string"
320
+ }
321
321
  },
322
322
  "M0015" : {
323
- "arguments" : [
324
- "plan",
325
- "securityCode",
326
- "status"
327
- ]
323
+ "required" : {
324
+ "plan" : "integer_as_string",
325
+ "securityCode" : "string",
326
+ "status" : "integer_as_string"
327
+ }
328
328
  },
329
329
  "M0016" : {
330
- "arguments" : [
331
- "securityCode",
332
- "status"
333
- ]
330
+ "required" : {
331
+ "securityCode" : "string",
332
+ "status" : "string"
333
+ }
334
334
  },
335
335
  "M0017" : {
336
- "arguments" : [
337
- "securityCode",
338
- "status"
339
- ]
336
+ "required" : {
337
+ "securityCode" : "string",
338
+ "status" : "string"
339
+ }
340
340
  },
341
341
  "M0018" : {
342
- "arguments" : [
343
- "plan",
344
- "securityCode",
345
- "status"
346
- ]
342
+ "required" : {
343
+ "plan" : "integer_as_string",
344
+ "securityCode" : "string",
345
+ "status" : "integer_as_string"
346
+ }
347
347
  },
348
348
  "M0019" : {
349
- "arguments" : [
350
- "input",
351
- "inputValue",
352
- "securityCode",
353
- "status"
354
- ]
349
+ "required" : {
350
+ "input" : "integer_as_string",
351
+ "inputValue" : "boolean_as_string",
352
+ "securityCode" : "string",
353
+ "status" : "boolean_as_string"
354
+ }
355
355
  },
356
356
  "M0103" : {
357
- "arguments" : [
358
- "newSecurityCode",
359
- "oldSecurityCode",
360
- "status"
361
- ]
357
+ "required" : {
358
+ "newSecurityCode" : "string",
359
+ "oldSecurityCode" : "string",
360
+ "status" : "string"
361
+ }
362
362
  },
363
363
  "M0104" : {
364
- "arguments" : [
365
- "day",
366
- "hour",
367
- "minute",
368
- "month",
369
- "second",
370
- "securityCode",
371
- "year"
372
- ]
364
+ "required" : {
365
+ "day" : "integer_as_string",
366
+ "hour" : "integer_as_string",
367
+ "minute" : "integer_as_string",
368
+ "month" : "integer_as_string",
369
+ "second" : "integer_as_string",
370
+ "securityCode" : "string",
371
+ "year" : "integer_as_string"
372
+ }
373
373
  }
374
374
  },
375
375
  "alarms" : {
376
- "A0001" : {
377
- "arguments" : []
378
- },
379
- "A0002" : {
380
- "arguments" : []
381
- },
382
- "A0003" : {
383
- "arguments" : []
384
- },
385
- "A0004" : {
386
- "arguments" : []
387
- },
388
- "A0005" : {
389
- "arguments" : []
390
- },
391
- "A0006" : {
392
- "arguments" : []
393
- },
394
- "A0007" : {
395
- "arguments" : []
396
- },
376
+ "A0001" : {},
377
+ "A0002" : {},
378
+ "A0003" : {},
379
+ "A0004" : {},
380
+ "A0005" : {},
381
+ "A0006" : {},
382
+ "A0007" : {},
397
383
  "A0008" : {
398
- "arguments" : [
399
- "timeplan"
400
- ]
401
- },
402
- "A0009" : {
403
- "arguments" : []
404
- },
405
- "A0101" : {
406
- "arguments" : []
384
+ "required" : {
385
+ "timeplan" : "integer_as_string"
386
+ }
407
387
  },
388
+ "A0009" : {},
389
+ "A0101" : {},
408
390
  "A0201" : {
409
- "arguments" : [
410
- "color"
411
- ]
391
+ "required" : {
392
+ "color" : "string"
393
+ }
412
394
  },
413
395
  "A0202" : {
414
- "arguments" : [
415
- "color"
416
- ]
396
+ "required" : {
397
+ "color" : "string"
398
+ }
417
399
  },
418
400
  "A0301" : {
419
- "arguments" : [
420
- "detector",
421
- "errormode",
422
- "manual",
423
- "type"
424
- ]
401
+ "required" : {
402
+ "detector" : "string",
403
+ "errormode" : "string",
404
+ "manual" : "boolean_as_string",
405
+ "type" : "string"
406
+ }
425
407
  },
426
408
  "A0302" : {
427
- "arguments" : [
428
- "detector",
429
- "errormode",
430
- "logicerror",
431
- "manual",
432
- "type"
433
- ]
409
+ "required" : {
410
+ "detector" : "string",
411
+ "errormode" : "string",
412
+ "logicerror" : "string",
413
+ "manual" : "boolean_as_string",
414
+ "type" : "string"
415
+ }
434
416
  }
435
417
  }
436
418
  }