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
@@ -215,7 +215,7 @@ objects:
215
215
  During startup mode the traffic controller shows dark, red, yellow flash or using the predetermined start cycle (minimum times).
216
216
  arguments:
217
217
  status:
218
- type: boolean
218
+ type: boolean_as_string
219
219
  description: |-
220
220
  False: Controller is not in start up mode
221
221
  True: Controller is currently in start up mode
@@ -227,12 +227,12 @@ objects:
227
227
  If no emergency route is active, status should be set to False, and emergencystage to zero.
228
228
  arguments:
229
229
  status:
230
- type: boolean
230
+ type: boolean_as_string
231
231
  description: |-
232
232
  False: Emergency stage inactive
233
233
  True: Emergency stage active
234
234
  emergencystage:
235
- type: integer
235
+ type: integer_as_string
236
236
  description: Number of emergency stage (set to zero if no route is active)
237
237
  min: 0
238
238
  max: 255
@@ -440,7 +440,7 @@ objects:
440
440
  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.
441
441
  arguments:
442
442
  status:
443
- type: integer
443
+ type: integer_as_string
444
444
  description: Current time plan
445
445
  min: 1
446
446
  max: 255
@@ -462,7 +462,7 @@ objects:
462
462
  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.
463
463
  arguments:
464
464
  status:
465
- type: integer
465
+ type: integer_as_string
466
466
  description: Current traffic situation
467
467
  min: 1
468
468
  max: 255
@@ -482,7 +482,7 @@ objects:
482
482
  Can be used by the management system to check the number of detector logics configured in the controller.
483
483
  arguments:
484
484
  number:
485
- type: integer
485
+ type: integer_as_string
486
486
  description: Number of detector logics
487
487
  min: 1
488
488
  max: 65025
@@ -492,7 +492,7 @@ objects:
492
492
  Can be used for the management system to check the number of signal groups configured in the controller.
493
493
  arguments:
494
494
  number:
495
- type: integer
495
+ type: integer_as_string
496
496
  description: Number of signal groups
497
497
  min: 1
498
498
  max: 65025
@@ -502,7 +502,7 @@ objects:
502
502
  Can be used for the management system to check the number of time plans configured in the controller.
503
503
  arguments:
504
504
  number:
505
- type: integer
505
+ type: integer_as_string
506
506
  description: Number of time plans (depreciated)
507
507
  min: 1
508
508
  max: 65025
@@ -512,7 +512,7 @@ objects:
512
512
  Can be used for the management system to check the number of traffic situations configured in the controller.
513
513
  arguments:
514
514
  number:
515
- type: integer
515
+ type: integer_as_string
516
516
  description: Number of traffic situations
517
517
  min: 1
518
518
  max: 65025
@@ -800,7 +800,7 @@ objects:
800
800
  Used in conjunction with dynamic bands, M0014
801
801
  arguments:
802
802
  status:
803
- type: integer
803
+ type: integer_as_string
804
804
  description: Timeout, in minutes
805
805
  min: 0
806
806
  max: 65535
@@ -810,7 +810,7 @@ objects:
810
810
  Provides information if maintenance personnel is currently working on site.
811
811
  arguments:
812
812
  user:
813
- type: integer
813
+ type: integer_as_string
814
814
  values:
815
815
  0: Nobody logged in
816
816
  1: Operator logged in at level 1 (read only)
@@ -821,7 +821,7 @@ objects:
821
821
  Provides information if maintenance personnel is currently working with the controller.
822
822
  arguments:
823
823
  user:
824
- type: integer
824
+ type: integer_as_string
825
825
  values:
826
826
  0: Nobody logged in
827
827
  1: Operator logged in at level 1 (read only)
@@ -841,32 +841,32 @@ objects:
841
841
  Provides diagnostic information about the current date and time set in the controller.
842
842
  arguments:
843
843
  year:
844
- type: integer
844
+ type: integer_as_string
845
845
  description: Year
846
846
  min: 0
847
847
  max: 9999
848
848
  month:
849
- type: integer
849
+ type: integer_as_string
850
850
  description: Month
851
851
  min: 1
852
852
  max: 12
853
853
  day:
854
- type: integer
854
+ type: integer_as_string
855
855
  description: Day of month
856
856
  min: 1
857
857
  max: 31
858
858
  hour:
859
- type: integer
859
+ type: integer_as_string
860
860
  description: Hour
861
861
  min: 0
862
862
  max: 23
863
863
  minute:
864
- type: integer
864
+ type: integer_as_string
865
865
  description: Minute
866
866
  min: 0
867
867
  max: 59
868
868
  second:
869
- type: integer
869
+ type: integer_as_string
870
870
  description: Second
871
871
  min: 0
872
872
  max: 59
@@ -1107,14 +1107,14 @@ objects:
1107
1107
  type: string
1108
1108
  description: Security code 2
1109
1109
  timeout:
1110
- type: integer
1110
+ type: integer_as_string
1111
1111
  description: |-
1112
1112
  Time in minutes until controller automatically reverts to previous functional position.
1113
1113
  0=no automatic return
1114
1114
  min: 0
1115
1115
  max: 1440
1116
1116
  intersection:
1117
- type: integer
1117
+ type: integer_as_string
1118
1118
  description: Intersection number
1119
1119
  min: 0
1120
1120
  max: 255
@@ -1128,7 +1128,7 @@ objects:
1128
1128
  Requires security code 2
1129
1129
  arguments:
1130
1130
  status:
1131
- type: boolean
1131
+ type: boolean_as_string
1132
1132
  description: |-
1133
1133
  False: Controller uses time plan according to programming
1134
1134
  True: Controller uses time plan according to command
@@ -1136,7 +1136,7 @@ objects:
1136
1136
  type: string
1137
1137
  description: Security code 2
1138
1138
  timeplan:
1139
- type: integer
1139
+ type: integer_as_string
1140
1140
  description: designation of time plan
1141
1141
  min: 1
1142
1142
  max: 255
@@ -1149,7 +1149,7 @@ objects:
1149
1149
  Requires security code 2
1150
1150
  arguments:
1151
1151
  status:
1152
- type: boolean
1152
+ type: boolean_as_string
1153
1153
  description: |-
1154
1154
  False: Controller uses traffic situation according to own programming
1155
1155
  True: Controller uses traffic situation according to command
@@ -1157,7 +1157,7 @@ objects:
1157
1157
  type: string
1158
1158
  description: Security code 2
1159
1159
  traficsituation:
1160
- type: integer
1160
+ type: integer_as_string
1161
1161
  description: designation of traficsituation
1162
1162
  min: 1
1163
1163
  max: 255
@@ -1169,7 +1169,7 @@ objects:
1169
1169
  Requires security code 2
1170
1170
  arguments:
1171
1171
  status:
1172
- type: boolean
1172
+ type: boolean_as_string
1173
1173
  description: 'True: Restart controller'
1174
1174
  securityCode:
1175
1175
  type: string
@@ -1183,7 +1183,7 @@ objects:
1183
1183
  Requires security code 2.
1184
1184
  arguments:
1185
1185
  status:
1186
- type: boolean
1186
+ type: boolean_as_string
1187
1187
  description: |-
1188
1188
  False: Deactivate emergency route
1189
1189
  True: Activate emergency route
@@ -1191,7 +1191,7 @@ objects:
1191
1191
  type: string
1192
1192
  description: Security code 2
1193
1193
  emergencyroute:
1194
- type: integer
1194
+ type: integer_as_string
1195
1195
  description: Number of emergency route
1196
1196
  min: 1
1197
1197
  max: 255
@@ -1206,7 +1206,7 @@ objects:
1206
1206
  Requires security code 2.
1207
1207
  arguments:
1208
1208
  status:
1209
- type: boolean
1209
+ type: boolean_as_string
1210
1210
  description: |-
1211
1211
  False: Deactivate input
1212
1212
  True: Activate input
@@ -1214,7 +1214,7 @@ objects:
1214
1214
  type: string
1215
1215
  description: Security code 2
1216
1216
  input:
1217
- type: integer
1217
+ type: integer_as_string
1218
1218
  description: Number of Input
1219
1219
  min: 1
1220
1220
  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 fixed time control
1233
1233
  True: Activate fixed time control
@@ -1328,7 +1328,7 @@ objects:
1328
1328
  Requires security code 2
1329
1329
  arguments:
1330
1330
  plan:
1331
- type: integer
1331
+ type: integer_as_string
1332
1332
  description: Plan to be changed
1333
1333
  min: 0
1334
1334
  max: 255
@@ -1356,12 +1356,12 @@ objects:
1356
1356
  Requires security code 2.
1357
1357
  arguments:
1358
1358
  status:
1359
- type: integer
1359
+ type: integer_as_string
1360
1360
  description: Set offset time in seconds
1361
1361
  min: 0
1362
1362
  max: 255
1363
1363
  plan:
1364
- type: integer
1364
+ type: integer_as_string
1365
1365
  description: Time plan nr
1366
1366
  min: 0
1367
1367
  max: 255
@@ -1442,12 +1442,12 @@ objects:
1442
1442
  Requires security code 2.
1443
1443
  arguments:
1444
1444
  status:
1445
- type: integer
1445
+ type: integer_as_string
1446
1446
  description: Set cycle time in seconds
1447
1447
  min: 1
1448
1448
  max: 255
1449
1449
  plan:
1450
- type: integer
1450
+ type: integer_as_string
1451
1451
  description: Time plan nr
1452
1452
  min: 0
1453
1453
  max: 255
@@ -1463,7 +1463,7 @@ objects:
1463
1463
  Requires security code 2.
1464
1464
  arguments:
1465
1465
  status:
1466
- type: boolean
1466
+ type: boolean_as_string
1467
1467
  description: |-
1468
1468
  False: Release input
1469
1469
  True: Force input
@@ -1471,12 +1471,12 @@ objects:
1471
1471
  type: string
1472
1472
  description: Security code 2
1473
1473
  input:
1474
- type: integer
1474
+ type: integer_as_string
1475
1475
  description: Number of Input
1476
1476
  min: 1
1477
1477
  max: 255
1478
1478
  inputValue:
1479
- type: boolean
1479
+ type: boolean_as_string
1480
1480
  description: |-
1481
1481
  False: input forced to False
1482
1482
  True: input forced to True
@@ -1489,7 +1489,7 @@ objects:
1489
1489
  Requires security code 2.
1490
1490
  arguments:
1491
1491
  status:
1492
- type: boolean
1492
+ type: boolean_as_string
1493
1493
  description: |-
1494
1494
  False: Force output
1495
1495
  True: Release output
@@ -1497,12 +1497,12 @@ objects:
1497
1497
  type: string
1498
1498
  description: Security code 2
1499
1499
  output:
1500
- type: integer
1500
+ type: integer_as_string
1501
1501
  description: Number of Output
1502
1502
  min: 1
1503
1503
  max: 255
1504
1504
  outputValue:
1505
- type: boolean
1505
+ type: boolean_as_string
1506
1506
  description: |-
1507
1507
  False: output forced to False
1508
1508
  True: output forced to True
@@ -1628,6 +1628,7 @@ objects:
1628
1628
  cancel: Cancel an existing priority
1629
1629
  level:
1630
1630
  type: integer
1631
+ optional: true
1631
1632
  description: |-
1632
1633
  0: Lowest, 14: Highest
1633
1634
  min: 0
@@ -1665,7 +1666,7 @@ objects:
1665
1666
  Requires security code 2.
1666
1667
  arguments:
1667
1668
  status:
1668
- type: integer
1669
+ type: integer_as_string
1669
1670
  min: 0
1670
1671
  max: 65535
1671
1672
  description: Timeout, in minutes
@@ -1702,32 +1703,32 @@ objects:
1702
1703
  type: string
1703
1704
  description: Security code 1
1704
1705
  year:
1705
- type: integer
1706
+ type: integer_as_string
1706
1707
  description: Year
1707
1708
  min: 0
1708
1709
  max: 9999
1709
1710
  month:
1710
- type: integer
1711
+ type: integer_as_string
1711
1712
  description: Month
1712
1713
  min: 1
1713
1714
  max: 12
1714
1715
  day:
1715
- type: integer
1716
+ type: integer_as_string
1716
1717
  description: Day of month
1717
1718
  min: 1
1718
1719
  max: 31
1719
1720
  hour:
1720
- type: integer
1721
+ type: integer_as_string
1721
1722
  description: Hour
1722
1723
  min: 0
1723
1724
  max: 23
1724
1725
  minute:
1725
- type: integer
1726
+ type: integer_as_string
1726
1727
  description: Minute
1727
1728
  min: 0
1728
1729
  max: 59
1729
1730
  second:
1730
- type: integer
1731
+ type: integer_as_string
1731
1732
  description: Second
1732
1733
  min: 0
1733
1734
  max: 59
@@ -1745,7 +1746,7 @@ objects:
1745
1746
  category: D
1746
1747
  arguments:
1747
1748
  timeplan:
1748
- type: integer
1749
+ type: integer_as_string
1749
1750
  description: Current time plan
1750
1751
  min: 1
1751
1752
  max: 255
@@ -1807,7 +1808,7 @@ objects:
1807
1808
  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.
1808
1809
  Format according to W3C XML dateTime with a resolution of 3 decimal places. All time stamps in UTC. E.g. 2009-10-02T14:34:34.341Z
1809
1810
  ToGConfidence:
1810
- type: integer
1811
+ type: integer_as_string
1811
1812
  description: Confidence of the likelyToGEstimate. 0-100%
1812
1813
  min: 0
1813
1814
  max: 100
@@ -1827,7 +1828,7 @@ objects:
1827
1828
  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.
1828
1829
  Format according to W3C XML dateTime with a resolution of 3 decimal places. All time stamps in UTC. E.g. 2009-10-02T14:34:34.341Z
1829
1830
  ToRConfidence:
1830
- type: integer
1831
+ type: integer_as_string
1831
1832
  description: Confidence of the likelyToREstimate. 0-100%
1832
1833
  min: 0
1833
1834
  max: 100
@@ -1841,7 +1842,7 @@ objects:
1841
1842
  reserved: true
1842
1843
  arguments:
1843
1844
  status:
1844
- type: boolean
1845
+ type: boolean_as_string
1845
1846
  description: |-
1846
1847
  False: No command (default)
1847
1848
  True: Order a signal group to green
@@ -1858,7 +1859,7 @@ objects:
1858
1859
  reserved: true
1859
1860
  arguments:
1860
1861
  status:
1861
- type: boolean
1862
+ type: boolean_as_string
1862
1863
  description: |-
1863
1864
  False: No command (default)
1864
1865
  True: Order a signal group to red
@@ -1890,7 +1891,7 @@ objects:
1890
1891
  description: Detector forced on/off while detector error
1891
1892
  values: ['on','off']
1892
1893
  manual:
1893
- type: boolean
1894
+ type: boolean_as_string
1894
1895
  description: Manually controlled detector logic (True/False)
1895
1896
  A0302:
1896
1897
  description: |-
@@ -1914,7 +1915,7 @@ objects:
1914
1915
  description: Detector forced on/off while detector error
1915
1916
  values: ['on','off']
1916
1917
  manual:
1917
- type: boolean
1918
+ type: boolean_as_string
1918
1919
  description: Manually controlled detector logic (True/False)
1919
1920
  logicerror:
1920
1921
  type: string
@@ -1944,7 +1945,7 @@ objects:
1944
1945
  description: Detector forced on/off while detector error
1945
1946
  values: ['on','off']
1946
1947
  manual:
1947
- type: boolean
1948
+ type: boolean_as_string
1948
1949
  description: Manually controlled detector logic (True/False)
1949
1950
  A0304:
1950
1951
  description: |-
@@ -1969,7 +1970,7 @@ objects:
1969
1970
  # on/off must be quoted, otherwise they are parsed as true/false
1970
1971
  values: ['on','off']
1971
1972
  manual:
1972
- type: boolean
1973
+ type: boolean_as_string
1973
1974
  description: Manually controlled detector logic (True/False)
1974
1975
  logicerror:
1975
1976
  type: string
@@ -1990,7 +1991,7 @@ objects:
1990
1991
  XML dateTime with a resolution of 3 decimal places. All time stamps
1991
1992
  in UTC. E.g. 2009-10-02T14:34:34.341Z
1992
1993
  vehicles:
1993
- type: integer
1994
+ type: integer_as_string
1994
1995
  description: Number of vehicles on a given detector logic (since last
1995
1996
  update)
1996
1997
  min: 0
@@ -2007,7 +2008,7 @@ objects:
2007
2008
  XML dateTime with a resolution of 3 decimal places. All time stamps
2008
2009
  in UTC. E.g. 2009-10-02T14:34:34.341Z
2009
2010
  speed:
2010
- type: integer
2011
+ type: integer_as_string
2011
2012
  description: Average speed in km/h
2012
2013
  min: 0
2013
2014
  max: 65535
@@ -2023,7 +2024,7 @@ objects:
2023
2024
  XML dateTime with a resolution of 3 decimal places. All time stamps
2024
2025
  in UTC. E.g. 2009-10-02T14:34:34.341Z
2025
2026
  occupancy:
2026
- type: integer
2027
+ type: integer_as_string
2027
2028
  description: Occupancy in percent (0-100%)
2028
2029
  min: 0
2029
2030
  max: 100
@@ -2039,47 +2040,47 @@ objects:
2039
2040
  XML dateTime with a resolution of 3 decimal places. All time stamps
2040
2041
  in UTC. E.g. 2009-10-02T14:34:34.341Z
2041
2042
  P:
2042
- type: integer
2043
+ type: integer_as_string
2043
2044
  description: Number of cars
2044
2045
  min: 0
2045
2046
  max: 65535
2046
2047
  PS:
2047
- type: integer
2048
+ type: integer_as_string
2048
2049
  description: Number of cars with trailers
2049
2050
  min: 0
2050
2051
  max: 65535
2051
2052
  L:
2052
- type: integer
2053
+ type: integer_as_string
2053
2054
  description: Number of trucks
2054
2055
  min: 0
2055
2056
  max: 65535
2056
2057
  LS:
2057
- type: integer
2058
+ type: integer_as_string
2058
2059
  description: Number of trucks with trailers
2059
2060
  min: 0
2060
2061
  max: 65535
2061
2062
  B:
2062
- type: integer
2063
+ type: integer_as_string
2063
2064
  description: Number of buses
2064
2065
  min: 0
2065
2066
  max: 65535
2066
2067
  SP:
2067
- type: integer
2068
+ type: integer_as_string
2068
2069
  description: Number of trams
2069
2070
  min: 0
2070
2071
  max: 65535
2071
2072
  MC:
2072
- type: integer
2073
+ type: integer_as_string
2073
2074
  description: Number of motor cycles
2074
2075
  min: 0
2075
2076
  max: 65535
2076
2077
  C:
2077
- type: integer
2078
+ type: integer_as_string
2078
2079
  description: Number of bicycles
2079
2080
  min: 0
2080
2081
  max: 65535
2081
2082
  F:
2082
- type: integer
2083
+ type: integer_as_string
2083
2084
  description: Number of pedestrians
2084
2085
  min: 0
2085
2086
  max: 65535
@@ -2092,7 +2093,7 @@ objects:
2092
2093
  Requires security code 2
2093
2094
  arguments:
2094
2095
  status:
2095
- type: boolean
2096
+ type: boolean_as_string
2096
2097
  description: |-
2097
2098
  False: Deactivate manual control of detector logic
2098
2099
  True: Activate manual control of detector logic
@@ -2100,7 +2101,7 @@ objects:
2100
2101
  type: string
2101
2102
  description: Security code 2
2102
2103
  mode:
2103
- type: boolean
2104
+ type: boolean_as_string
2104
2105
  description: |-
2105
2106
  False: Deactivate detector logic
2106
2107
  True: Activate detector logic