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
  }
@@ -106,15 +106,15 @@ objects:
106
106
  description: Signal group status as text field
107
107
  pattern: "^[a-hA-G0-9N-P]*$"
108
108
  cyclecounter:
109
- type: integer
109
+ type: integer_as_string
110
110
  description: Cycle counter
111
111
  range: "[0-999]"
112
112
  basecyclecounter:
113
- type: integer
113
+ type: integer_as_string
114
114
  description: Base cycle counter
115
115
  range: "[0-999]"
116
116
  stage:
117
- type: integer
117
+ type: integer_as_string
118
118
  description: Current stage (isolated)
119
119
  range: "[0-999]"
120
120
  S0002:
@@ -157,7 +157,7 @@ objects:
157
157
  During startup mode the traffic controller shows dark, red, yellow flash or using the predetermined start cycle (minimum times).
158
158
  arguments:
159
159
  status:
160
- type: boolean
160
+ type: boolean_as_string
161
161
  description: |-
162
162
  False: Controller is not in start up mode
163
163
  True: Controller is currently in start up mode
@@ -168,12 +168,12 @@ objects:
168
168
  Used in situations where full priority is given in the emergency vehicle program.
169
169
  arguments:
170
170
  status:
171
- type: boolean
171
+ type: boolean_as_string
172
172
  description: |-
173
173
  False: Emergency stage inactive
174
174
  True: Emergency stage active
175
175
  emergencystage:
176
- type: integer
176
+ type: integer_as_string
177
177
  description: Number of emergency stage
178
178
  range: "[1-255]"
179
179
  S0007:
@@ -304,7 +304,7 @@ objects:
304
304
  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.
305
305
  arguments:
306
306
  status:
307
- type: integer
307
+ type: integer_as_string
308
308
  description: Current time plan
309
309
  range: "[1-255]"
310
310
  S0015:
@@ -315,7 +315,7 @@ objects:
315
315
  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.
316
316
  arguments:
317
317
  status:
318
- type: integer
318
+ type: integer_as_string
319
319
  description: Current traffic situation
320
320
  range: "[1-255]"
321
321
  S0016:
@@ -324,7 +324,7 @@ objects:
324
324
  Can be used by the management system to check the number of detector logics configured in the controller.
325
325
  arguments:
326
326
  number:
327
- type: long
327
+ type: long_as_string
328
328
  description: Number of detector logics
329
329
  range: "[1-65025]"
330
330
  S0017:
@@ -333,7 +333,7 @@ objects:
333
333
  Can be used for the management system to check the number of signal groups configured in the controller.
334
334
  arguments:
335
335
  number:
336
- type: long
336
+ type: long_as_string
337
337
  description: Number of signal groups
338
338
  range: "[1-65025]"
339
339
  S0018:
@@ -342,7 +342,7 @@ objects:
342
342
  Can be used for the management system to check the number of time plans configured in the controller.
343
343
  arguments:
344
344
  number:
345
- type: long
345
+ type: long_as_string
346
346
  description: Number of time plans (depreciated)
347
347
  range: "[1-65025]"
348
348
  S0019:
@@ -351,7 +351,7 @@ objects:
351
351
  Can be used for the management system to check the number of traffic situations configured in the controller.
352
352
  arguments:
353
353
  number:
354
- type: long
354
+ type: long_as_string
355
355
  description: Number of traffic situations
356
356
  range: "[1-65025]"
357
357
  S0020:
@@ -578,29 +578,29 @@ objects:
578
578
  Provides diagnostic information about the current date and time set in the controller.
579
579
  arguments:
580
580
  year:
581
- type: integer
581
+ type: integer_as_string
582
582
  description: 'Year according to format YYYY. NOTE: UTC is used'
583
583
  range: YYYY
584
584
  month:
585
- type: integer
585
+ type: integer_as_string
586
586
  description: 'Month (01-12) according to format MM. Note: UTC is used'
587
587
  range: MM
588
588
  day:
589
- type: integer
589
+ type: integer_as_string
590
590
  description: 'Day of month (01-31) according to format DD. Note: UTC
591
591
  is used'
592
592
  range: DD
593
593
  hour:
594
- type: integer
594
+ type: integer_as_string
595
595
  description: 'Hour of day (00-23) according to format DD. Note: UTC is
596
596
  used'
597
597
  range: HH
598
598
  minute:
599
- type: integer
599
+ type: integer_as_string
600
600
  description: 'Minute (00-59) according to format MM. Note: UTC is used'
601
601
  range: MM
602
602
  second:
603
- type: integer
603
+ type: integer_as_string
604
604
  description: 'Second (00-59) according to format SS. Note: UTC is used'
605
605
  range: SS
606
606
  S0097:
@@ -849,7 +849,7 @@ objects:
849
849
  Requires security code 2
850
850
  arguments:
851
851
  status:
852
- type: boolean
852
+ type: boolean_as_string
853
853
  description: |-
854
854
  False: Controller uses time plan according to programming
855
855
  True: Controller uses time plan according to command
@@ -857,7 +857,7 @@ objects:
857
857
  type: string
858
858
  description: Security code 2
859
859
  timeplan:
860
- type: integer
860
+ type: integer_as_string
861
861
  description: designation of time plan
862
862
  range: "[1-255]"
863
863
  command: setPlan
@@ -869,7 +869,7 @@ objects:
869
869
  Requires security code 2
870
870
  arguments:
871
871
  status:
872
- type: boolean
872
+ type: boolean_as_string
873
873
  description: |-
874
874
  False: Controller uses traffic situation according to own programming
875
875
  True: Controller uses traffic situation according to command
@@ -877,7 +877,7 @@ objects:
877
877
  type: string
878
878
  description: Security code 2
879
879
  traficsituation:
880
- type: integer
880
+ type: integer_as_string
881
881
  description: designation of traficsituation
882
882
  range: "[1-255]"
883
883
  command: setTrafficSituation
@@ -888,7 +888,7 @@ objects:
888
888
  Requires security code 2
889
889
  arguments:
890
890
  status:
891
- type: boolean
891
+ type: boolean_as_string
892
892
  description: 'True: Restart controller'
893
893
  securityCode:
894
894
  type: string
@@ -902,7 +902,7 @@ objects:
902
902
  Requires security code 2.
903
903
  arguments:
904
904
  status:
905
- type: boolean
905
+ type: boolean_as_string
906
906
  description: |-
907
907
  False: Activate emergency route
908
908
  True: Deactivate emergency route
@@ -910,7 +910,7 @@ objects:
910
910
  type: string
911
911
  description: Security code 2
912
912
  emergencyroute:
913
- type: integer
913
+ type: integer_as_string
914
914
  description: Number of emergency route
915
915
  range: "[1-255]"
916
916
  command: setEmergency
@@ -924,7 +924,7 @@ objects:
924
924
  Requires security code 2.
925
925
  arguments:
926
926
  status:
927
- type: boolean
927
+ type: boolean_as_string
928
928
  description: |-
929
929
  False: Deactivate input
930
930
  True: Activate input
@@ -932,7 +932,7 @@ objects:
932
932
  type: string
933
933
  description: Security code 2
934
934
  input:
935
- type: integer
935
+ type: integer_as_string
936
936
  description: Number of Input
937
937
  range: "[1-255]"
938
938
  command: setInput
@@ -944,7 +944,7 @@ objects:
944
944
  Requires security code 2.
945
945
  arguments:
946
946
  status:
947
- type: boolean
947
+ type: boolean_as_string
948
948
  description: |-
949
949
  False: Deactivate fixed time control
950
950
  True: Activate fixed time control
@@ -1032,7 +1032,7 @@ objects:
1032
1032
  Requires security code 2
1033
1033
  arguments:
1034
1034
  plan:
1035
- type: integer
1035
+ type: integer_as_string
1036
1036
  description: Plan to be changed
1037
1037
  range: "[0-255]"
1038
1038
  status:
@@ -1059,11 +1059,11 @@ objects:
1059
1059
  Requires security code 2.
1060
1060
  arguments:
1061
1061
  status:
1062
- type: integer
1062
+ type: integer_as_string
1063
1063
  description: Set offset time in seconds
1064
1064
  range: "[0-255]"
1065
1065
  plan:
1066
- type: integer
1066
+ type: integer_as_string
1067
1067
  description: Time plan nr
1068
1068
  range: "[0-255]"
1069
1069
  securityCode:
@@ -1143,11 +1143,11 @@ objects:
1143
1143
  Requires security code 2.
1144
1144
  arguments:
1145
1145
  status:
1146
- type: integer
1146
+ type: integer_as_string
1147
1147
  description: Set cycle time in seconds
1148
1148
  range: "[1-255]"
1149
1149
  plan:
1150
- type: integer
1150
+ type: integer_as_string
1151
1151
  description: Time plan nr
1152
1152
  range: "[0-255]"
1153
1153
  securityCode:
@@ -1162,7 +1162,7 @@ objects:
1162
1162
  Requires security code 2.
1163
1163
  arguments:
1164
1164
  status:
1165
- type: boolean
1165
+ type: boolean_as_string
1166
1166
  description: |-
1167
1167
  False: Force input
1168
1168
  True: Release input
@@ -1170,11 +1170,11 @@ objects:
1170
1170
  type: string
1171
1171
  description: Security code 2
1172
1172
  input:
1173
- type: integer
1173
+ type: integer_as_string
1174
1174
  description: Number of Input
1175
1175
  range: "[1-255]"
1176
1176
  inputValue:
1177
- type: boolean
1177
+ type: boolean_as_string
1178
1178
  description: |-
1179
1179
  False: input forced to False
1180
1180
  True: input forced to True
@@ -1187,7 +1187,7 @@ objects:
1187
1187
  Requires security code 2.
1188
1188
  arguments:
1189
1189
  status:
1190
- type: boolean
1190
+ type: boolean_as_string
1191
1191
  description: |-
1192
1192
  False: Force output
1193
1193
  True: Release output
@@ -1195,11 +1195,11 @@ objects:
1195
1195
  type: string
1196
1196
  description: Security code 2
1197
1197
  output:
1198
- type: integer
1198
+ type: integer_as_string
1199
1199
  description: Number of Output
1200
1200
  range: "[1-255]"
1201
1201
  outputValue:
1202
- type: boolean
1202
+ type: boolean_as_string
1203
1203
  description: |-
1204
1204
  False: output forced to False
1205
1205
  True: output forced to True
@@ -1249,37 +1249,37 @@ objects:
1249
1249
  type: string
1250
1250
  description: Security code 1
1251
1251
  year:
1252
- type: integer
1252
+ type: integer_as_string
1253
1253
  description: |-
1254
1254
  Changes internal clock. Note: UTC is used
1255
1255
  Year according to YYYY
1256
1256
  range: "[YYYY]"
1257
1257
  month:
1258
- type: integer
1258
+ type: integer_as_string
1259
1259
  description: |-
1260
1260
  Changes internal clock. Note: UTC is used
1261
1261
  Month according to MM (01-12)
1262
1262
  range: "[MM]"
1263
1263
  day:
1264
- type: integer
1264
+ type: integer_as_string
1265
1265
  description: |-
1266
1266
  Changes internal clock. Note: UTC is used
1267
1267
  Day in month according to DD (01-31)
1268
1268
  range: "[DD]"
1269
1269
  hour:
1270
- type: integer
1270
+ type: integer_as_string
1271
1271
  description: |-
1272
1272
  Changes internal clock. Note: UTC is used
1273
1273
  Hour according to HH (00-23)
1274
1274
  range: "[HH]"
1275
1275
  minute:
1276
- type: integer
1276
+ type: integer_as_string
1277
1277
  description: |-
1278
1278
  Changes internal clock. Note: UTC is used
1279
1279
  Minute according to MM (00-59)
1280
1280
  range: "[MM]"
1281
1281
  second:
1282
- type: integer
1282
+ type: integer_as_string
1283
1283
  description: |-
1284
1284
  Changes internal clock. Note: UTC is used
1285
1285
  Second according to SS (00-59)
@@ -1298,7 +1298,7 @@ objects:
1298
1298
  category: D
1299
1299
  arguments:
1300
1300
  timeplan:
1301
- type: integer
1301
+ type: integer_as_string
1302
1302
  description: Current time plan
1303
1303
  range: "[designation]"
1304
1304
  A0101:
@@ -1359,7 +1359,7 @@ objects:
1359
1359
  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.
1360
1360
  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
1361
1361
  ToGConfidence:
1362
- type: integer
1362
+ type: integer_as_string
1363
1363
  description: Confidence of the likelyToGEstimate. 0-100%
1364
1364
  range: "[0-100]"
1365
1365
  minToREstimate :
@@ -1378,7 +1378,7 @@ objects:
1378
1378
  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.
1379
1379
  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
1380
1380
  ToRConfidence:
1381
- type: integer
1381
+ type: integer_as_string
1382
1382
  description: Confidence of the likelyToREstimate. 0-100%
1383
1383
  range: "[0-100]"
1384
1384
  commands:
@@ -1390,7 +1390,7 @@ objects:
1390
1390
  Requires security code 2
1391
1391
  arguments:
1392
1392
  status:
1393
- type: boolean
1393
+ type: boolean_as_string
1394
1394
  description: |-
1395
1395
  False: No command (default)
1396
1396
  True: Order a signal group to green
@@ -1406,7 +1406,7 @@ objects:
1406
1406
  Requires security code 2
1407
1407
  arguments:
1408
1408
  status:
1409
- type: boolean
1409
+ type: boolean_as_string
1410
1410
  description: |-
1411
1411
  False: No command (default)
1412
1412
  True: Order a signal group to red
@@ -1439,7 +1439,7 @@ objects:
1439
1439
  description: Detector forced on/off while detector error
1440
1440
  values: ['on','off']
1441
1441
  manual:
1442
- type: boolean
1442
+ type: boolean_as_string
1443
1443
  description: Manually controlled detector logic (True/False)
1444
1444
  A0302:
1445
1445
  description: |-
@@ -1464,7 +1464,7 @@ objects:
1464
1464
  description: Detector forced on/off while detector error
1465
1465
  values: ['on','off']
1466
1466
  manual:
1467
- type: boolean
1467
+ type: boolean_as_string
1468
1468
  description: Manually controlled detector logic (True/False)
1469
1469
  logicerror:
1470
1470
  type: string
@@ -1485,7 +1485,7 @@ objects:
1485
1485
  XML dateTime with a resolution of 3 decimal places. All time stamps
1486
1486
  in UTC. E.g. 2009-10-02T14:34:34.341Z
1487
1487
  vehicles:
1488
- type: long
1488
+ type: long_as_string
1489
1489
  description: Number of vehicles on a given detector logic (since last
1490
1490
  update)
1491
1491
  range: "[number]"
@@ -1501,7 +1501,7 @@ objects:
1501
1501
  XML dateTime with a resolution of 3 decimal places. All time stamps
1502
1502
  in UTC. E.g. 2009-10-02T14:34:34.341Z
1503
1503
  speed:
1504
- type: integer
1504
+ type: integer_as_string
1505
1505
  description: Average speed in km/h
1506
1506
  range: "[speed]"
1507
1507
  S0203:
@@ -1516,7 +1516,7 @@ objects:
1516
1516
  XML dateTime with a resolution of 3 decimal places. All time stamps
1517
1517
  in UTC. E.g. 2009-10-02T14:34:34.341Z
1518
1518
  occupancy:
1519
- type: integer
1519
+ type: integer_as_string
1520
1520
  description: Occupancy in percent (0-100%)
1521
1521
  range: "[0-100]"
1522
1522
  S0204:
@@ -1531,39 +1531,39 @@ objects:
1531
1531
  XML dateTime with a resolution of 3 decimal places. All time stamps
1532
1532
  in UTC. E.g. 2009-10-02T14:34:34.341Z
1533
1533
  P:
1534
- type: long
1534
+ type: long_as_string
1535
1535
  description: Number of cars
1536
1536
  range: "[number]"
1537
1537
  PS:
1538
- type: long
1538
+ type: long_as_string
1539
1539
  description: Number of cars with trailers
1540
1540
  range: "[number]"
1541
1541
  L:
1542
- type: long
1542
+ type: long_as_string
1543
1543
  description: Number of trucks
1544
1544
  range: "[number]"
1545
1545
  LS:
1546
- type: long
1546
+ type: long_as_string
1547
1547
  description: Number of trucks with trailers
1548
1548
  range: "[number]"
1549
1549
  B:
1550
- type: long
1550
+ type: long_as_string
1551
1551
  description: Number of busses
1552
1552
  range: "[number]"
1553
1553
  SP:
1554
- type: long
1554
+ type: long_as_string
1555
1555
  description: Number of trams
1556
1556
  range: "[number]"
1557
1557
  MC:
1558
- type: long
1558
+ type: long_as_string
1559
1559
  description: Number of motor cycles
1560
1560
  range: "[number]"
1561
1561
  C:
1562
- type: long
1562
+ type: long_as_string
1563
1563
  description: Number of bicycles
1564
1564
  range: "[number]"
1565
1565
  F:
1566
- type: long
1566
+ type: long_as_string
1567
1567
  description: Number of pedestrians
1568
1568
  range: "[number]"
1569
1569
  commands:
@@ -1575,7 +1575,7 @@ objects:
1575
1575
  Requires security code 2
1576
1576
  arguments:
1577
1577
  status:
1578
- type: boolean
1578
+ type: boolean_as_string
1579
1579
  description: |-
1580
1580
  False: Deactivate manual control of detector logic
1581
1581
  True: Activate manual control of detector logic
@@ -1583,7 +1583,7 @@ objects:
1583
1583
  type: string
1584
1584
  description: Security code 2
1585
1585
  mode:
1586
- type: boolean
1586
+ type: boolean_as_string
1587
1587
  description: |-
1588
1588
  False: Deactivate detector logic
1589
1589
  True: Activate detector logic