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
  }
@@ -117,7 +117,7 @@ objects:
117
117
  - = Signal group is undefined/does not exist
118
118
  pattern: "^[a-hA-G0-9N-P]*$"
119
119
  cyclecounter:
120
- type: integer
120
+ type: integer_as_string
121
121
  description: |-
122
122
  Cycle counter.
123
123
  Used for handling of coordination between TLC's.
@@ -135,7 +135,7 @@ objects:
135
135
  min: 0
136
136
  max: 999
137
137
  basecyclecounter:
138
- type: integer
138
+ type: integer_as_string
139
139
  description: |-
140
140
  Base cycle counter.
141
141
  Used for handling of coordination between TLC's.
@@ -144,7 +144,7 @@ objects:
144
144
  min: 0
145
145
  max: 999
146
146
  stage:
147
- type: integer
147
+ type: integer_as_string
148
148
  description: Current stage (isolated)
149
149
  min: 0
150
150
  max: 999
@@ -197,7 +197,7 @@ objects:
197
197
  During startup mode the traffic controller shows dark, red, yellow flash or using the predetermined start cycle (minimum times).
198
198
  arguments:
199
199
  status:
200
- type: boolean
200
+ type: boolean_as_string
201
201
  description: |-
202
202
  False: Controller is not in start up mode
203
203
  True: Controller is currently in start up mode
@@ -208,12 +208,12 @@ objects:
208
208
  type: array
209
209
  items:
210
210
  intersection:
211
- type: integer
211
+ type: integer_as_string
212
212
  description: Intersection id
213
213
  min: 0
214
214
  max: 255
215
215
  startup:
216
- type: boolean
216
+ type: boolean_as_string
217
217
  description: Start up mode
218
218
  S0006:
219
219
  description: |-
@@ -227,13 +227,13 @@ objects:
227
227
  Deprecated, use S0035 instead.
228
228
  arguments:
229
229
  status:
230
- type: boolean
230
+ type: boolean_as_string
231
231
  deprecated: true
232
232
  description: |-
233
233
  False: Emergency route inactive
234
234
  True: Emergency route active
235
235
  emergencystage:
236
- type: integer
236
+ type: integer_as_string
237
237
  deprecated: true
238
238
  description: Number of emergency route (set to zero if no route is active)
239
239
  min: 0
@@ -442,7 +442,7 @@ objects:
442
442
  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.
443
443
  arguments:
444
444
  status:
445
- type: integer
445
+ type: integer_as_string
446
446
  description: Current time plan
447
447
  min: 1
448
448
  max: 255
@@ -464,7 +464,7 @@ objects:
464
464
  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.
465
465
  arguments:
466
466
  status:
467
- type: integer
467
+ type: integer_as_string
468
468
  description: Current traffic situation
469
469
  min: 1
470
470
  max: 255
@@ -484,7 +484,7 @@ objects:
484
484
  Can be used by the management system to check the number of detector logics configured in the controller.
485
485
  arguments:
486
486
  number:
487
- type: integer
487
+ type: integer_as_string
488
488
  description: Number of detector logics
489
489
  min: 1
490
490
  max: 65025
@@ -494,7 +494,7 @@ objects:
494
494
  Can be used for the management system to check the number of signal groups configured in the controller.
495
495
  arguments:
496
496
  number:
497
- type: integer
497
+ type: integer_as_string
498
498
  description: Number of signal groups
499
499
  min: 1
500
500
  max: 65025
@@ -504,7 +504,7 @@ objects:
504
504
  Can be used for the management system to check the number of traffic situations configured in the controller.
505
505
  arguments:
506
506
  number:
507
- type: integer
507
+ type: integer_as_string
508
508
  description: Number of traffic situations
509
509
  min: 1
510
510
  max: 65025
@@ -789,7 +789,7 @@ objects:
789
789
  Used in conjunction with dynamic bands, M0014
790
790
  arguments:
791
791
  status:
792
- type: integer
792
+ type: integer_as_string
793
793
  description: Timeout, in minutes
794
794
  min: 0
795
795
  max: 65535
@@ -807,7 +807,7 @@ objects:
807
807
  type: array
808
808
  items:
809
809
  id:
810
- type: integer
810
+ type: integer_as_string
811
811
  description: ID of active emergency route
812
812
  min: 1
813
813
  max: 255
@@ -817,7 +817,7 @@ objects:
817
817
  Provides information if maintenance personnel is currently working on site.
818
818
  arguments:
819
819
  user:
820
- type: integer
820
+ type: integer_as_string
821
821
  values:
822
822
  0: Nobody logged in
823
823
  1: Operator logged in at level 1 (read only)
@@ -828,7 +828,7 @@ objects:
828
828
  Provides information if maintenance personnel is currently working with the controller.
829
829
  arguments:
830
830
  user:
831
- type: integer
831
+ type: integer_as_string
832
832
  values:
833
833
  0: Nobody logged in
834
834
  1: Operator logged in at level 1 (read only)
@@ -848,32 +848,32 @@ objects:
848
848
  Provides diagnostic information about the current date and time set in the controller.
849
849
  arguments:
850
850
  year:
851
- type: integer
851
+ type: integer_as_string
852
852
  description: Year
853
853
  min: 0
854
854
  max: 9999
855
855
  month:
856
- type: integer
856
+ type: integer_as_string
857
857
  description: Month
858
858
  min: 1
859
859
  max: 12
860
860
  day:
861
- type: integer
861
+ type: integer_as_string
862
862
  description: Day of month
863
863
  min: 1
864
864
  max: 31
865
865
  hour:
866
- type: integer
866
+ type: integer_as_string
867
867
  description: Hour
868
868
  min: 0
869
869
  max: 23
870
870
  minute:
871
- type: integer
871
+ type: integer_as_string
872
872
  description: Minute
873
873
  min: 0
874
874
  max: 59
875
875
  second:
876
- type: integer
876
+ type: integer_as_string
877
877
  description: Second
878
878
  min: 0
879
879
  max: 59
@@ -1101,14 +1101,14 @@ objects:
1101
1101
  type: string
1102
1102
  description: Security code 2
1103
1103
  timeout:
1104
- type: integer
1104
+ type: integer_as_string
1105
1105
  description: |-
1106
1106
  Time in minutes until controller automatically reverts to previous functional position.
1107
1107
  0=no automatic return
1108
1108
  min: 0
1109
1109
  max: 1440
1110
1110
  intersection:
1111
- type: integer
1111
+ type: integer_as_string
1112
1112
  description: Intersection number
1113
1113
  min: 0
1114
1114
  max: 255
@@ -1122,7 +1122,7 @@ objects:
1122
1122
  Requires security code 2
1123
1123
  arguments:
1124
1124
  status:
1125
- type: boolean
1125
+ type: boolean_as_string
1126
1126
  description: |-
1127
1127
  False: Controller uses time plan according to programming
1128
1128
  True: Controller uses time plan according to command
@@ -1130,7 +1130,7 @@ objects:
1130
1130
  type: string
1131
1131
  description: Security code 2
1132
1132
  timeplan:
1133
- type: integer
1133
+ type: integer_as_string
1134
1134
  description: designation of time plan
1135
1135
  min: 1
1136
1136
  max: 255
@@ -1143,7 +1143,7 @@ objects:
1143
1143
  Requires security code 2
1144
1144
  arguments:
1145
1145
  status:
1146
- type: boolean
1146
+ type: boolean_as_string
1147
1147
  description: |-
1148
1148
  False: Controller uses traffic situation according to own programming
1149
1149
  True: Controller uses traffic situation according to command
@@ -1151,7 +1151,7 @@ objects:
1151
1151
  type: string
1152
1152
  description: Security code 2
1153
1153
  traficsituation:
1154
- type: integer
1154
+ type: integer_as_string
1155
1155
  description: designation of traficsituation
1156
1156
  min: 1
1157
1157
  max: 255
@@ -1163,7 +1163,7 @@ objects:
1163
1163
  Requires security code 2
1164
1164
  arguments:
1165
1165
  status:
1166
- type: boolean
1166
+ type: boolean_as_string
1167
1167
  description: 'True: Restart controller'
1168
1168
  securityCode:
1169
1169
  type: string
@@ -1177,7 +1177,7 @@ objects:
1177
1177
  Requires security code 2.
1178
1178
  arguments:
1179
1179
  status:
1180
- type: boolean
1180
+ type: boolean_as_string
1181
1181
  description: |-
1182
1182
  False: Deactivate emergency route
1183
1183
  True: Activate emergency route
@@ -1185,7 +1185,7 @@ objects:
1185
1185
  type: string
1186
1186
  description: Security code 2
1187
1187
  emergencyroute:
1188
- type: integer
1188
+ type: integer_as_string
1189
1189
  description: Number of emergency route
1190
1190
  min: 1
1191
1191
  max: 255
@@ -1200,7 +1200,7 @@ objects:
1200
1200
  Requires security code 2.
1201
1201
  arguments:
1202
1202
  status:
1203
- type: boolean
1203
+ type: boolean_as_string
1204
1204
  description: |-
1205
1205
  False: Deactivate input
1206
1206
  True: Activate input
@@ -1208,7 +1208,7 @@ objects:
1208
1208
  type: string
1209
1209
  description: Security code 2
1210
1210
  input:
1211
- type: integer
1211
+ type: integer_as_string
1212
1212
  description: Number of Input
1213
1213
  min: 1
1214
1214
  max: 255
@@ -1221,7 +1221,7 @@ objects:
1221
1221
  Requires security code 2.
1222
1222
  arguments:
1223
1223
  status:
1224
- type: boolean
1224
+ type: boolean_as_string
1225
1225
  description: |-
1226
1226
  False: Deactivate fixed time control
1227
1227
  True: Activate fixed time control
@@ -1322,7 +1322,7 @@ objects:
1322
1322
  Requires security code 2
1323
1323
  arguments:
1324
1324
  plan:
1325
- type: integer
1325
+ type: integer_as_string
1326
1326
  description: Plan to be changed
1327
1327
  min: 0
1328
1328
  max: 255
@@ -1350,12 +1350,12 @@ objects:
1350
1350
  Requires security code 2.
1351
1351
  arguments:
1352
1352
  status:
1353
- type: integer
1353
+ type: integer_as_string
1354
1354
  description: Set offset time in seconds
1355
1355
  min: 0
1356
1356
  max: 255
1357
1357
  plan:
1358
- type: integer
1358
+ type: integer_as_string
1359
1359
  description: Time plan nr
1360
1360
  min: 0
1361
1361
  max: 255
@@ -1436,12 +1436,12 @@ objects:
1436
1436
  Requires security code 2.
1437
1437
  arguments:
1438
1438
  status:
1439
- type: integer
1439
+ type: integer_as_string
1440
1440
  description: Set cycle time in seconds
1441
1441
  min: 1
1442
1442
  max: 255
1443
1443
  plan:
1444
- type: integer
1444
+ type: integer_as_string
1445
1445
  description: Time plan nr
1446
1446
  min: 0
1447
1447
  max: 255
@@ -1457,7 +1457,7 @@ objects:
1457
1457
  Requires security code 2.
1458
1458
  arguments:
1459
1459
  status:
1460
- type: boolean
1460
+ type: boolean_as_string
1461
1461
  description: |-
1462
1462
  False: Release input
1463
1463
  True: Force input
@@ -1465,12 +1465,12 @@ objects:
1465
1465
  type: string
1466
1466
  description: Security code 2
1467
1467
  input:
1468
- type: integer
1468
+ type: integer_as_string
1469
1469
  description: Number of Input
1470
1470
  min: 1
1471
1471
  max: 255
1472
1472
  inputValue:
1473
- type: boolean
1473
+ type: boolean_as_string
1474
1474
  description: |-
1475
1475
  False: input forced to False
1476
1476
  True: input forced to True
@@ -1483,7 +1483,7 @@ objects:
1483
1483
  Requires security code 2.
1484
1484
  arguments:
1485
1485
  status:
1486
- type: boolean
1486
+ type: boolean_as_string
1487
1487
  description: |-
1488
1488
  False: Force output
1489
1489
  True: Release output
@@ -1491,12 +1491,12 @@ objects:
1491
1491
  type: string
1492
1492
  description: Security code 2
1493
1493
  output:
1494
- type: integer
1494
+ type: integer_as_string
1495
1495
  description: Number of Output
1496
1496
  min: 1
1497
1497
  max: 255
1498
1498
  outputValue:
1499
- type: boolean
1499
+ type: boolean_as_string
1500
1500
  description: |-
1501
1501
  False: output forced to False
1502
1502
  True: output forced to True
@@ -1622,6 +1622,7 @@ objects:
1622
1622
  cancel: Cancel an existing priority
1623
1623
  level:
1624
1624
  type: integer
1625
+ optional: true
1625
1626
  description: |-
1626
1627
  0: Lowest, 14: Highest
1627
1628
  min: 0
@@ -1659,7 +1660,7 @@ objects:
1659
1660
  Requires security code 2.
1660
1661
  arguments:
1661
1662
  status:
1662
- type: integer
1663
+ type: integer_as_string
1663
1664
  min: 0
1664
1665
  max: 65535
1665
1666
  description: Timeout, in minutes
@@ -1696,32 +1697,32 @@ objects:
1696
1697
  type: string
1697
1698
  description: Security code 1
1698
1699
  year:
1699
- type: integer
1700
+ type: integer_as_string
1700
1701
  description: Year
1701
1702
  min: 0
1702
1703
  max: 9999
1703
1704
  month:
1704
- type: integer
1705
+ type: integer_as_string
1705
1706
  description: Month
1706
1707
  min: 1
1707
1708
  max: 12
1708
1709
  day:
1709
- type: integer
1710
+ type: integer_as_string
1710
1711
  description: Day of month
1711
1712
  min: 1
1712
1713
  max: 31
1713
1714
  hour:
1714
- type: integer
1715
+ type: integer_as_string
1715
1716
  description: Hour
1716
1717
  min: 0
1717
1718
  max: 23
1718
1719
  minute:
1719
- type: integer
1720
+ type: integer_as_string
1720
1721
  description: Minute
1721
1722
  min: 0
1722
1723
  max: 59
1723
1724
  second:
1724
- type: integer
1725
+ type: integer_as_string
1725
1726
  description: Second
1726
1727
  min: 0
1727
1728
  max: 59
@@ -1739,7 +1740,7 @@ objects:
1739
1740
  category: D
1740
1741
  arguments:
1741
1742
  timeplan:
1742
- type: integer
1743
+ type: integer_as_string
1743
1744
  description: Current time plan
1744
1745
  min: 1
1745
1746
  max: 255
@@ -1798,7 +1799,7 @@ objects:
1798
1799
  description: |-
1799
1800
  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.
1800
1801
  ToGConfidence:
1801
- type: integer
1802
+ type: integer_as_string
1802
1803
  description: Confidence of the likelyToGEstimate. 0-100%
1803
1804
  min: 0
1804
1805
  max: 100
@@ -1815,7 +1816,7 @@ objects:
1815
1816
  description: |-
1816
1817
  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.
1817
1818
  ToRConfidence:
1818
- type: integer
1819
+ type: integer_as_string
1819
1820
  description: Confidence of the likelyToREstimate. 0-100%
1820
1821
  min: 0
1821
1822
  max: 100
@@ -1829,7 +1830,7 @@ objects:
1829
1830
  reserved: true
1830
1831
  arguments:
1831
1832
  status:
1832
- type: boolean
1833
+ type: boolean_as_string
1833
1834
  description: |-
1834
1835
  False: No command (default)
1835
1836
  True: Order a signal group to green
@@ -1846,7 +1847,7 @@ objects:
1846
1847
  reserved: true
1847
1848
  arguments:
1848
1849
  status:
1849
- type: boolean
1850
+ type: boolean_as_string
1850
1851
  description: |-
1851
1852
  False: No command (default)
1852
1853
  True: Order a signal group to red
@@ -1878,7 +1879,7 @@ objects:
1878
1879
  description: Detector forced on/off while detector error
1879
1880
  values: ['on','off'] # on/off must be quoted, otherwise they are converted to true/false
1880
1881
  manual:
1881
- type: boolean
1882
+ type: boolean_as_string
1882
1883
  description: Manually controlled detector logic (True/False)
1883
1884
  A0302:
1884
1885
  description: |-
@@ -1902,7 +1903,7 @@ objects:
1902
1903
  description: Detector forced on/off while detector error
1903
1904
  values: ['on','off'] # on/off must be quoted, otherwise they are converted to true/false
1904
1905
  manual:
1905
- type: boolean
1906
+ type: boolean_as_string
1906
1907
  description: Manually controlled detector logic (True/False)
1907
1908
  logicerror:
1908
1909
  type: string
@@ -1932,7 +1933,7 @@ objects:
1932
1933
  description: Detector forced on/off while detector error
1933
1934
  values: ['on','off'] # on/off must be quoted, otherwise they are converted to true/false
1934
1935
  manual:
1935
- type: boolean
1936
+ type: boolean_as_string
1936
1937
  description: Manually controlled detector logic (True/False)
1937
1938
  A0304:
1938
1939
  description: |-
@@ -1956,7 +1957,7 @@ objects:
1956
1957
  description: Detector forced on/off while detector error
1957
1958
  values: ['on','off'] # on/off must be quoted, otherwise they are converted to true/false
1958
1959
  manual:
1959
- type: boolean
1960
+ type: boolean_as_string
1960
1961
  description: Manually controlled detector logic (True/False)
1961
1962
  logicerror:
1962
1963
  type: string
@@ -1975,7 +1976,7 @@ objects:
1975
1976
  type: timestamp
1976
1977
  description: Time stamp for start of measuring
1977
1978
  vehicles:
1978
- type: integer
1979
+ type: integer_as_string
1979
1980
  description: Number of vehicles on a given detector logic (since last
1980
1981
  update)
1981
1982
  min: 0
@@ -1989,7 +1990,7 @@ objects:
1989
1990
  type: timestamp
1990
1991
  description: Time stamp for start of measuring
1991
1992
  speed:
1992
- type: integer
1993
+ type: integer_as_string
1993
1994
  description: Average speed in km/h
1994
1995
  min: 0
1995
1996
  max: 65535
@@ -2002,7 +2003,7 @@ objects:
2002
2003
  type: timestamp
2003
2004
  description: Time stamp for start of measuring
2004
2005
  occupancy:
2005
- type: integer
2006
+ type: integer_as_string
2006
2007
  description: Occupancy in percent (0-100%)
2007
2008
  min: 0
2008
2009
  max: 100
@@ -2015,47 +2016,47 @@ objects:
2015
2016
  type: timestamp
2016
2017
  description: Time stamp for start of measuring
2017
2018
  P:
2018
- type: integer
2019
+ type: integer_as_string
2019
2020
  description: Number of cars
2020
2021
  min: 0
2021
2022
  max: 65535
2022
2023
  PS:
2023
- type: integer
2024
+ type: integer_as_string
2024
2025
  description: Number of cars with trailers
2025
2026
  min: 0
2026
2027
  max: 65535
2027
2028
  L:
2028
- type: integer
2029
+ type: integer_as_string
2029
2030
  description: Number of trucks
2030
2031
  min: 0
2031
2032
  max: 65535
2032
2033
  LS:
2033
- type: integer
2034
+ type: integer_as_string
2034
2035
  description: Number of trucks with trailers
2035
2036
  min: 0
2036
2037
  max: 65535
2037
2038
  B:
2038
- type: integer
2039
+ type: integer_as_string
2039
2040
  description: Number of buses
2040
2041
  min: 0
2041
2042
  max: 65535
2042
2043
  SP:
2043
- type: integer
2044
+ type: integer_as_string
2044
2045
  description: Number of trams
2045
2046
  min: 0
2046
2047
  max: 65535
2047
2048
  MC:
2048
- type: integer
2049
+ type: integer_as_string
2049
2050
  description: Number of motor cycles
2050
2051
  min: 0
2051
2052
  max: 65535
2052
2053
  C:
2053
- type: integer
2054
+ type: integer_as_string
2054
2055
  description: Number of bicycles
2055
2056
  min: 0
2056
2057
  max: 65535
2057
2058
  F:
2058
- type: integer
2059
+ type: integer_as_string
2059
2060
  description: Number of pedestrians
2060
2061
  min: 0
2061
2062
  max: 65535
@@ -2068,7 +2069,7 @@ objects:
2068
2069
  Requires security code 2
2069
2070
  arguments:
2070
2071
  status:
2071
- type: boolean
2072
+ type: boolean_as_string
2072
2073
  description: |-
2073
2074
  False: Deactivate manual control of detector logic
2074
2075
  True: Activate manual control of detector logic
@@ -2076,7 +2077,7 @@ objects:
2076
2077
  type: string
2077
2078
  description: Security code 2
2078
2079
  mode:
2079
- type: boolean
2080
+ type: boolean_as_string
2080
2081
  description: |-
2081
2082
  False: Deactivate detector logic
2082
2083
  True: Activate detector logic