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
@@ -19,6 +19,25 @@
19
19
  }
20
20
  }
21
21
  ]
22
+ },
23
+ "age_unknown_or_undefined" : {
24
+ "allOf" : [
25
+ {
26
+ "required" : [
27
+ "age"
28
+ ]
29
+ },
30
+ {
31
+ "properties" : {
32
+ "age" : {
33
+ "enum" : [
34
+ "undefined",
35
+ "unknown"
36
+ ]
37
+ }
38
+ }
39
+ }
40
+ ]
22
41
  }
23
42
  }
24
43
  }
@@ -60,11 +60,11 @@
60
60
  },
61
61
  "e" : {
62
62
  "description" : "Estimated green extension provided by the priority, in seconds\nOnly used when state is 'completed'.",
63
- "$ref" : "../defs/definitions.json#/integer"
63
+ "type" : "integer"
64
64
  },
65
65
  "d" : {
66
66
  "description" : "Estimated red reduction provided by the priority, in seconds\nOnly used when state is 'completed'.",
67
- "$ref" : "../defs/definitions.json#/integer"
67
+ "type" : "integer"
68
68
  }
69
69
  }
70
70
  }
@@ -118,7 +118,7 @@ objects:
118
118
  - : Signal group is undefined/does not exist
119
119
  pattern: "^[a-hA-G0-9N-P]*$"
120
120
  cyclecounter:
121
- type: integer
121
+ type: integer_as_string
122
122
  description: |-
123
123
  Cycle counter.
124
124
  Used for handling of coordination between TLC's.
@@ -136,7 +136,7 @@ objects:
136
136
  min: 0
137
137
  max: 999
138
138
  basecyclecounter:
139
- type: integer
139
+ type: integer_as_string
140
140
  description: |-
141
141
  Base cycle counter.
142
142
  Used for handling of coordination between TLC's.
@@ -145,7 +145,7 @@ objects:
145
145
  min: 0
146
146
  max: 999
147
147
  stage:
148
- type: integer
148
+ type: integer_as_string
149
149
  description: Current stage (isolated)
150
150
  min: 0
151
151
  max: 999
@@ -201,7 +201,7 @@ objects:
201
201
  During startup mode the traffic controller shows dark, red, yellow flash or using the predetermined start cycle (minimum times).
202
202
  arguments:
203
203
  status:
204
- type: boolean
204
+ type: boolean_as_string
205
205
  description: |-
206
206
  False: Controller is not in start up mode
207
207
  True: Controller is currently in start up mode
@@ -212,12 +212,12 @@ objects:
212
212
  type: array
213
213
  items:
214
214
  intersection:
215
- type: integer
215
+ type: integer_as_string
216
216
  description: Intersection id
217
217
  min: 0
218
218
  max: 255
219
219
  startup:
220
- type: boolean
220
+ type: boolean_as_string
221
221
  description: Start up mode
222
222
  S0006:
223
223
  description: |-
@@ -231,13 +231,13 @@ objects:
231
231
  Deprecated, use S0035 instead.
232
232
  arguments:
233
233
  status:
234
- type: boolean
234
+ type: boolean_as_string
235
235
  deprecated: true
236
236
  description: |-
237
237
  False: Emergency route inactive
238
238
  True: Emergency route active
239
239
  emergencystage:
240
- type: integer
240
+ type: integer_as_string
241
241
  deprecated: true
242
242
  description: Number of emergency route (set to zero if no route is active)
243
243
  min: 0
@@ -446,7 +446,7 @@ objects:
446
446
  The time plan (signal program) may change signal timings, cycle time, control strategy and much more. Typical usage is is scenario based control where change of program is used to change priority etc.
447
447
  arguments:
448
448
  status:
449
- type: integer
449
+ type: integer_as_string
450
450
  description: Current time plan
451
451
  min: 1
452
452
  max: 255
@@ -468,7 +468,7 @@ objects:
468
468
  Traffic situation is a concept used to divide multiple TLC's into areas and sub-areas. The traffic situation gives the possibility to change the TLC sub-area dynamically depending on the time of day and the traffic flow. Depending on the traffic situation each TLC selects the time plan dynamically.
469
469
  arguments:
470
470
  status:
471
- type: integer
471
+ type: integer_as_string
472
472
  description: Current traffic situation
473
473
  min: 1
474
474
  max: 255
@@ -488,7 +488,7 @@ objects:
488
488
  Can be used by the management system to check the number of detector logics configured in the controller.
489
489
  arguments:
490
490
  number:
491
- type: integer
491
+ type: integer_as_string
492
492
  description: Number of detector logics
493
493
  min: 1
494
494
  max: 65025
@@ -498,7 +498,7 @@ objects:
498
498
  Can be used for the management system to check the number of signal groups configured in the controller.
499
499
  arguments:
500
500
  number:
501
- type: integer
501
+ type: integer_as_string
502
502
  description: Number of signal groups
503
503
  min: 1
504
504
  max: 65025
@@ -508,7 +508,7 @@ objects:
508
508
  Can be used for the management system to check the number of traffic situations configured in the controller.
509
509
  arguments:
510
510
  number:
511
- type: integer
511
+ type: integer_as_string
512
512
  description: Number of traffic situations
513
513
  min: 1
514
514
  max: 65025
@@ -811,7 +811,7 @@ objects:
811
811
  Used in conjunction with dynamic bands, M0014
812
812
  arguments:
813
813
  status:
814
- type: integer
814
+ type: integer_as_string
815
815
  description: Timeout, in minutes
816
816
  min: 0
817
817
  max: 65535
@@ -829,7 +829,7 @@ objects:
829
829
  type: array
830
830
  items:
831
831
  id:
832
- type: integer
832
+ type: integer_as_string
833
833
  description: ID of active emergency route
834
834
  min: 1
835
835
  max: 255
@@ -839,7 +839,7 @@ objects:
839
839
  Provides information if maintenance personnel is currently working on site.
840
840
  arguments:
841
841
  user:
842
- type: integer
842
+ type: integer_as_string
843
843
  values:
844
844
  0: Nobody logged in
845
845
  1: Operator logged in at level 1 (read only)
@@ -850,7 +850,7 @@ objects:
850
850
  Provides information if maintenance personnel is currently working with the controller.
851
851
  arguments:
852
852
  user:
853
- type: integer
853
+ type: integer_as_string
854
854
  values:
855
855
  0: Nobody logged in
856
856
  1: Operator logged in at level 1 (read only)
@@ -870,32 +870,32 @@ objects:
870
870
  Provides diagnostic information about the current date and time set in the controller.
871
871
  arguments:
872
872
  year:
873
- type: integer
873
+ type: integer_as_string
874
874
  description: Year
875
875
  min: 0
876
876
  max: 9999
877
877
  month:
878
- type: integer
878
+ type: integer_as_string
879
879
  description: Month
880
880
  min: 1
881
881
  max: 12
882
882
  day:
883
- type: integer
883
+ type: integer_as_string
884
884
  description: Day of month
885
885
  min: 1
886
886
  max: 31
887
887
  hour:
888
- type: integer
888
+ type: integer_as_string
889
889
  description: Hour
890
890
  min: 0
891
891
  max: 23
892
892
  minute:
893
- type: integer
893
+ type: integer_as_string
894
894
  description: Minute
895
895
  min: 0
896
896
  max: 59
897
897
  second:
898
- type: integer
898
+ type: integer_as_string
899
899
  description: Second
900
900
  min: 0
901
901
  max: 59
@@ -1123,14 +1123,14 @@ objects:
1123
1123
  type: string
1124
1124
  description: Security code 2
1125
1125
  timeout:
1126
- type: integer
1126
+ type: integer_as_string
1127
1127
  description: |-
1128
1128
  Time in minutes until controller automatically reverts to previous functional position.
1129
1129
  0=no automatic return
1130
1130
  min: 0
1131
1131
  max: 1440
1132
1132
  intersection:
1133
- type: integer
1133
+ type: integer_as_string
1134
1134
  description: |-
1135
1135
  Intersection number.
1136
1136
  Command only applies to specified intersection. Other intersections remains in their respective operating mode(s).
@@ -1147,7 +1147,7 @@ objects:
1147
1147
  Requires security code 2
1148
1148
  arguments:
1149
1149
  status:
1150
- type: boolean
1150
+ type: boolean_as_string
1151
1151
  description: |-
1152
1152
  False: Controller uses time plan according to programming
1153
1153
  True: Controller uses time plan according to command
@@ -1155,7 +1155,7 @@ objects:
1155
1155
  type: string
1156
1156
  description: Security code 2
1157
1157
  timeplan:
1158
- type: integer
1158
+ type: integer_as_string
1159
1159
  description: designation of time plan
1160
1160
  min: 1
1161
1161
  max: 255
@@ -1168,7 +1168,7 @@ objects:
1168
1168
  Requires security code 2
1169
1169
  arguments:
1170
1170
  status:
1171
- type: boolean
1171
+ type: boolean_as_string
1172
1172
  description: |-
1173
1173
  False: Controller uses traffic situation according to own programming
1174
1174
  True: Controller uses traffic situation according to command
@@ -1176,7 +1176,7 @@ objects:
1176
1176
  type: string
1177
1177
  description: Security code 2
1178
1178
  traficsituation:
1179
- type: integer
1179
+ type: integer_as_string
1180
1180
  description: designation of traficsituation
1181
1181
  min: 1
1182
1182
  max: 255
@@ -1188,7 +1188,7 @@ objects:
1188
1188
  Requires security code 2
1189
1189
  arguments:
1190
1190
  status:
1191
- type: boolean
1191
+ type: boolean_as_string
1192
1192
  deprecated: true
1193
1193
  description: 'True: Restart controller'
1194
1194
  securityCode:
@@ -1204,7 +1204,7 @@ objects:
1204
1204
  Requires security code 2.
1205
1205
  arguments:
1206
1206
  status:
1207
- type: boolean
1207
+ type: boolean_as_string
1208
1208
  description: |-
1209
1209
  False: Deactivate emergency route
1210
1210
  True: Activate emergency route
@@ -1212,7 +1212,7 @@ objects:
1212
1212
  type: string
1213
1213
  description: Security code 2
1214
1214
  emergencyroute:
1215
- type: integer
1215
+ type: integer_as_string
1216
1216
  description: Number of emergency route
1217
1217
  min: 1
1218
1218
  max: 255
@@ -1227,7 +1227,7 @@ objects:
1227
1227
  Requires security code 2.
1228
1228
  arguments:
1229
1229
  status:
1230
- type: boolean
1230
+ type: boolean_as_string
1231
1231
  description: |-
1232
1232
  False: Deactivate input
1233
1233
  True: Activate input
@@ -1235,7 +1235,7 @@ objects:
1235
1235
  type: string
1236
1236
  description: Security code 2
1237
1237
  input:
1238
- type: integer
1238
+ type: integer_as_string
1239
1239
  description: Number of Input
1240
1240
  min: 1
1241
1241
  max: 255
@@ -1248,7 +1248,7 @@ objects:
1248
1248
  Requires security code 2.
1249
1249
  arguments:
1250
1250
  status:
1251
- type: boolean
1251
+ type: boolean_as_string
1252
1252
  description: |-
1253
1253
  False: Deactivate fixed time control
1254
1254
  True: Activate fixed time control
@@ -1349,7 +1349,7 @@ objects:
1349
1349
  Requires security code 2
1350
1350
  arguments:
1351
1351
  plan:
1352
- type: integer
1352
+ type: integer_as_string
1353
1353
  description: Plan to be changed
1354
1354
  min: 0
1355
1355
  max: 255
@@ -1377,12 +1377,12 @@ objects:
1377
1377
  Requires security code 2.
1378
1378
  arguments:
1379
1379
  status:
1380
- type: integer
1380
+ type: integer_as_string
1381
1381
  description: Set offset time in seconds
1382
1382
  min: 0
1383
1383
  max: 255
1384
1384
  plan:
1385
- type: integer
1385
+ type: integer_as_string
1386
1386
  description: Time plan nr
1387
1387
  min: 0
1388
1388
  max: 255
@@ -1463,12 +1463,12 @@ objects:
1463
1463
  Requires security code 2.
1464
1464
  arguments:
1465
1465
  status:
1466
- type: integer
1466
+ type: integer_as_string
1467
1467
  description: Set cycle time in seconds
1468
1468
  min: 1
1469
1469
  max: 255
1470
1470
  plan:
1471
- type: integer
1471
+ type: integer_as_string
1472
1472
  description: Time plan nr
1473
1473
  min: 0
1474
1474
  max: 255
@@ -1484,7 +1484,7 @@ objects:
1484
1484
  Requires security code 2.
1485
1485
  arguments:
1486
1486
  status:
1487
- type: boolean
1487
+ type: boolean_as_string
1488
1488
  description: |-
1489
1489
  False: Release input
1490
1490
  True: Force input
@@ -1492,12 +1492,12 @@ objects:
1492
1492
  type: string
1493
1493
  description: Security code 2
1494
1494
  input:
1495
- type: integer
1495
+ type: integer_as_string
1496
1496
  description: Number of Input
1497
1497
  min: 1
1498
1498
  max: 255
1499
1499
  inputValue:
1500
- type: boolean
1500
+ type: boolean_as_string
1501
1501
  description: |-
1502
1502
  False: input forced to False
1503
1503
  True: input forced to True
@@ -1510,7 +1510,7 @@ objects:
1510
1510
  Requires security code 2.
1511
1511
  arguments:
1512
1512
  status:
1513
- type: boolean
1513
+ type: boolean_as_string
1514
1514
  description: |-
1515
1515
  False: Force output
1516
1516
  True: Release output
@@ -1518,12 +1518,12 @@ objects:
1518
1518
  type: string
1519
1519
  description: Security code 2
1520
1520
  output:
1521
- type: integer
1521
+ type: integer_as_string
1522
1522
  description: Number of Output
1523
1523
  min: 1
1524
1524
  max: 255
1525
1525
  outputValue:
1526
- type: boolean
1526
+ type: boolean_as_string
1527
1527
  description: |-
1528
1528
  False: output forced to False
1529
1529
  True: output forced to True
@@ -1649,6 +1649,7 @@ objects:
1649
1649
  cancel: Cancel an existing priority
1650
1650
  level:
1651
1651
  type: integer
1652
+ optional: true
1652
1653
  description: |-
1653
1654
  0: Lowest, 14: Highest
1654
1655
  min: 0
@@ -1686,7 +1687,7 @@ objects:
1686
1687
  Requires security code 2.
1687
1688
  arguments:
1688
1689
  status:
1689
- type: integer
1690
+ type: integer_as_string
1690
1691
  min: 0
1691
1692
  max: 65535
1692
1693
  description: Timeout, in minutes
@@ -1723,32 +1724,32 @@ objects:
1723
1724
  type: string
1724
1725
  description: Security code 1
1725
1726
  year:
1726
- type: integer
1727
+ type: integer_as_string
1727
1728
  description: Year
1728
1729
  min: 0
1729
1730
  max: 9999
1730
1731
  month:
1731
- type: integer
1732
+ type: integer_as_string
1732
1733
  description: Month
1733
1734
  min: 1
1734
1735
  max: 12
1735
1736
  day:
1736
- type: integer
1737
+ type: integer_as_string
1737
1738
  description: Day of month
1738
1739
  min: 1
1739
1740
  max: 31
1740
1741
  hour:
1741
- type: integer
1742
+ type: integer_as_string
1742
1743
  description: Hour
1743
1744
  min: 0
1744
1745
  max: 23
1745
1746
  minute:
1746
- type: integer
1747
+ type: integer_as_string
1747
1748
  description: Minute
1748
1749
  min: 0
1749
1750
  max: 59
1750
1751
  second:
1751
- type: integer
1752
+ type: integer_as_string
1752
1753
  description: Second
1753
1754
  min: 0
1754
1755
  max: 59
@@ -1766,7 +1767,7 @@ objects:
1766
1767
  category: D
1767
1768
  arguments:
1768
1769
  timeplan:
1769
- type: integer
1770
+ type: integer_as_string
1770
1771
  description: Current time plan
1771
1772
  min: 1
1772
1773
  max: 255
@@ -1825,7 +1826,7 @@ objects:
1825
1826
  description: |-
1826
1827
  Time stamp for the most likely time for the signal group to go to green. If the signal group is green, it is the most likely time for the next green.
1827
1828
  ToGConfidence:
1828
- type: integer
1829
+ type: integer_as_string
1829
1830
  description: Confidence of the likelyToGEstimate. 0-100%
1830
1831
  min: 0
1831
1832
  max: 100
@@ -1842,7 +1843,7 @@ objects:
1842
1843
  description: |-
1843
1844
  Time stamp for the most likely time for the signal group to go to red. If the signal group is red, it is the most likely time for the next red.
1844
1845
  ToRConfidence:
1845
- type: integer
1846
+ type: integer_as_string
1846
1847
  description: Confidence of the likelyToREstimate. 0-100%
1847
1848
  min: 0
1848
1849
  max: 100
@@ -1856,7 +1857,7 @@ objects:
1856
1857
  reserved: true
1857
1858
  arguments:
1858
1859
  status:
1859
- type: boolean
1860
+ type: boolean_as_string
1860
1861
  description: |-
1861
1862
  False: No command (default)
1862
1863
  True: Order a signal group to green
@@ -1873,7 +1874,7 @@ objects:
1873
1874
  reserved: true
1874
1875
  arguments:
1875
1876
  status:
1876
- type: boolean
1877
+ type: boolean_as_string
1877
1878
  description: |-
1878
1879
  False: No command (default)
1879
1880
  True: Order a signal group to red
@@ -1905,7 +1906,7 @@ objects:
1905
1906
  description: Detector forced on/off while detector error
1906
1907
  values: ['on','off'] # on/off must be quoted, otherwise they are converted to true/false
1907
1908
  manual:
1908
- type: boolean
1909
+ type: boolean_as_string
1909
1910
  description: Manually controlled detector logic (True/False)
1910
1911
  A0302:
1911
1912
  description: |-
@@ -1929,7 +1930,7 @@ objects:
1929
1930
  description: Detector forced on/off while detector error
1930
1931
  values: ['on','off'] # on/off must be quoted, otherwise they are converted to true/false
1931
1932
  manual:
1932
- type: boolean
1933
+ type: boolean_as_string
1933
1934
  description: Manually controlled detector logic (True/False)
1934
1935
  logicerror:
1935
1936
  type: string
@@ -1959,7 +1960,7 @@ objects:
1959
1960
  description: Detector forced on/off while detector error
1960
1961
  values: ['on','off'] # on/off must be quoted, otherwise they are converted to true/false
1961
1962
  manual:
1962
- type: boolean
1963
+ type: boolean_as_string
1963
1964
  description: Manually controlled detector logic (True/False)
1964
1965
  A0304:
1965
1966
  description: |-
@@ -1983,7 +1984,7 @@ objects:
1983
1984
  description: Detector forced on/off while detector error
1984
1985
  values: ['on','off'] # on/off must be quoted, otherwise they are converted to true/false
1985
1986
  manual:
1986
- type: boolean
1987
+ type: boolean_as_string
1987
1988
  description: Manually controlled detector logic (True/False)
1988
1989
  logicerror:
1989
1990
  type: string
@@ -2002,7 +2003,7 @@ objects:
2002
2003
  type: timestamp
2003
2004
  description: Time stamp for start of measuring
2004
2005
  vehicles:
2005
- type: integer
2006
+ type: integer_as_string
2006
2007
  description: Number of vehicles on a given detector logic (since last
2007
2008
  update)
2008
2009
  min: 0
@@ -2016,7 +2017,7 @@ objects:
2016
2017
  type: timestamp
2017
2018
  description: Time stamp for start of measuring
2018
2019
  speed:
2019
- type: integer
2020
+ type: integer_as_string
2020
2021
  description: Average speed in km/h
2021
2022
  min: 0
2022
2023
  max: 65535
@@ -2029,7 +2030,7 @@ objects:
2029
2030
  type: timestamp
2030
2031
  description: Time stamp for start of measuring
2031
2032
  occupancy:
2032
- type: integer
2033
+ type: integer_as_string
2033
2034
  description: Occupancy in percent (0-100%)
2034
2035
  min: 0
2035
2036
  max: 100
@@ -2042,47 +2043,47 @@ objects:
2042
2043
  type: timestamp
2043
2044
  description: Time stamp for start of measuring
2044
2045
  P:
2045
- type: integer
2046
+ type: integer_as_string
2046
2047
  description: Number of cars
2047
2048
  min: 0
2048
2049
  max: 65535
2049
2050
  PS:
2050
- type: integer
2051
+ type: integer_as_string
2051
2052
  description: Number of cars with trailers
2052
2053
  min: 0
2053
2054
  max: 65535
2054
2055
  L:
2055
- type: integer
2056
+ type: integer_as_string
2056
2057
  description: Number of trucks
2057
2058
  min: 0
2058
2059
  max: 65535
2059
2060
  LS:
2060
- type: integer
2061
+ type: integer_as_string
2061
2062
  description: Number of trucks with trailers
2062
2063
  min: 0
2063
2064
  max: 65535
2064
2065
  B:
2065
- type: integer
2066
+ type: integer_as_string
2066
2067
  description: Number of buses
2067
2068
  min: 0
2068
2069
  max: 65535
2069
2070
  SP:
2070
- type: integer
2071
+ type: integer_as_string
2071
2072
  description: Number of trams
2072
2073
  min: 0
2073
2074
  max: 65535
2074
2075
  MC:
2075
- type: integer
2076
+ type: integer_as_string
2076
2077
  description: Number of motor cycles
2077
2078
  min: 0
2078
2079
  max: 65535
2079
2080
  C:
2080
- type: integer
2081
+ type: integer_as_string
2081
2082
  description: Number of bicycles
2082
2083
  min: 0
2083
2084
  max: 65535
2084
2085
  F:
2085
- type: integer
2086
+ type: integer_as_string
2086
2087
  description: Number of pedestrians
2087
2088
  min: 0
2088
2089
  max: 65535
@@ -2095,7 +2096,7 @@ objects:
2095
2096
  Requires security code 2
2096
2097
  arguments:
2097
2098
  status:
2098
- type: boolean
2099
+ type: boolean_as_string
2099
2100
  description: |-
2100
2101
  False: Deactivate manual control of detector logic
2101
2102
  True: Activate manual control of detector logic
@@ -2103,7 +2104,7 @@ objects:
2103
2104
  type: string
2104
2105
  description: Security code 2
2105
2106
  mode:
2106
- type: boolean
2107
+ type: boolean_as_string
2107
2108
  description: |-
2108
2109
  False: Deactivate detector logic
2109
2110
  True: Activate detector logic