rsmp 0.42.9 → 0.43.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 (993) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +2 -0
  3. data/CHANGELOG.md +7 -1
  4. data/Gemfile.lock +3 -5
  5. data/Rakefile +36 -0
  6. data/lib/rsmp/cli.rb +19 -32
  7. data/lib/rsmp/convert/export/json_schema/items.rb +55 -0
  8. data/lib/rsmp/convert/export/json_schema/outputs.rb +147 -0
  9. data/lib/rsmp/convert/export/json_schema/values.rb +120 -0
  10. data/lib/rsmp/convert/export/json_schema.rb +58 -0
  11. data/lib/rsmp/message.rb +0 -2
  12. data/lib/rsmp/schema.rb +210 -0
  13. data/lib/rsmp/schema_error.rb +19 -0
  14. data/lib/rsmp/version.rb +1 -1
  15. data/lib/rsmp.rb +6 -2
  16. data/rsmp.gemspec +2 -1
  17. data/schemas/core/3.1.2/aggregated_status.json +25 -0
  18. data/schemas/core/3.1.2/alarm.json +67 -0
  19. data/schemas/core/3.1.2/alarm_acknowledge.json +12 -0
  20. data/schemas/core/3.1.2/alarm_issue.json +47 -0
  21. data/schemas/core/3.1.2/alarm_suspend_resume.json +3 -0
  22. data/schemas/core/3.1.2/alarm_suspended_resumed.json +47 -0
  23. data/schemas/core/3.1.2/command_request.json +24 -0
  24. data/schemas/core/3.1.2/command_response.json +34 -0
  25. data/schemas/core/3.1.2/core.json +38 -0
  26. data/schemas/core/3.1.2/definitions.json +67 -0
  27. data/schemas/core/3.1.2/message_ack.json +11 -0
  28. data/schemas/core/3.1.2/message_not_ack.json +15 -0
  29. data/schemas/core/3.1.2/rsmp.json +124 -0
  30. data/schemas/core/3.1.2/status.json +21 -0
  31. data/schemas/core/3.1.2/status_request.json +5 -0
  32. data/schemas/core/3.1.2/status_response.json +26 -0
  33. data/schemas/core/3.1.2/status_subscribe.json +27 -0
  34. data/schemas/core/3.1.2/status_unsubscribe.json +5 -0
  35. data/schemas/core/3.1.2/status_update.json +26 -0
  36. data/schemas/core/3.1.2/version.json +47 -0
  37. data/schemas/core/3.1.2/watchdog.json +9 -0
  38. data/schemas/core/3.1.3/aggregated_status.json +25 -0
  39. data/schemas/core/3.1.3/alarm.json +67 -0
  40. data/schemas/core/3.1.3/alarm_acknowledge.json +12 -0
  41. data/schemas/core/3.1.3/alarm_issue.json +47 -0
  42. data/schemas/core/3.1.3/alarm_suspend_resume.json +3 -0
  43. data/schemas/core/3.1.3/alarm_suspended_resumed.json +47 -0
  44. data/schemas/core/3.1.3/command_request.json +24 -0
  45. data/schemas/core/3.1.3/command_response.json +34 -0
  46. data/schemas/core/3.1.3/core.json +38 -0
  47. data/schemas/core/3.1.3/definitions.json +67 -0
  48. data/schemas/core/3.1.3/message_ack.json +11 -0
  49. data/schemas/core/3.1.3/message_not_ack.json +15 -0
  50. data/schemas/core/3.1.3/rsmp.json +124 -0
  51. data/schemas/core/3.1.3/status.json +21 -0
  52. data/schemas/core/3.1.3/status_request.json +5 -0
  53. data/schemas/core/3.1.3/status_response.json +41 -0
  54. data/schemas/core/3.1.3/status_subscribe.json +27 -0
  55. data/schemas/core/3.1.3/status_unsubscribe.json +5 -0
  56. data/schemas/core/3.1.3/status_update.json +41 -0
  57. data/schemas/core/3.1.3/version.json +47 -0
  58. data/schemas/core/3.1.3/watchdog.json +9 -0
  59. data/schemas/core/3.1.4/aggregated_status.json +25 -0
  60. data/schemas/core/3.1.4/alarm.json +65 -0
  61. data/schemas/core/3.1.4/alarm_acknowledge.json +12 -0
  62. data/schemas/core/3.1.4/alarm_issue.json +47 -0
  63. data/schemas/core/3.1.4/alarm_suspend_resume.json +3 -0
  64. data/schemas/core/3.1.4/alarm_suspended_resumed.json +47 -0
  65. data/schemas/core/3.1.4/command_request.json +24 -0
  66. data/schemas/core/3.1.4/command_response.json +34 -0
  67. data/schemas/core/3.1.4/core.json +38 -0
  68. data/schemas/core/3.1.4/definitions.json +67 -0
  69. data/schemas/core/3.1.4/message_ack.json +11 -0
  70. data/schemas/core/3.1.4/message_not_ack.json +15 -0
  71. data/schemas/core/3.1.4/rsmp.json +124 -0
  72. data/schemas/core/3.1.4/status.json +21 -0
  73. data/schemas/core/3.1.4/status_request.json +5 -0
  74. data/schemas/core/3.1.4/status_response.json +41 -0
  75. data/schemas/core/3.1.4/status_subscribe.json +27 -0
  76. data/schemas/core/3.1.4/status_unsubscribe.json +5 -0
  77. data/schemas/core/3.1.4/status_update.json +41 -0
  78. data/schemas/core/3.1.4/version.json +47 -0
  79. data/schemas/core/3.1.4/watchdog.json +9 -0
  80. data/schemas/core/3.1.5/aggregated_status.json +25 -0
  81. data/schemas/core/3.1.5/aggregated_status_request.json +9 -0
  82. data/schemas/core/3.1.5/alarm.json +75 -0
  83. data/schemas/core/3.1.5/alarm_acknowledge.json +12 -0
  84. data/schemas/core/3.1.5/alarm_issue.json +47 -0
  85. data/schemas/core/3.1.5/alarm_request.json +3 -0
  86. data/schemas/core/3.1.5/alarm_suspend_resume.json +3 -0
  87. data/schemas/core/3.1.5/alarm_suspended_resumed.json +47 -0
  88. data/schemas/core/3.1.5/command_request.json +24 -0
  89. data/schemas/core/3.1.5/command_response.json +34 -0
  90. data/schemas/core/3.1.5/core.json +39 -0
  91. data/schemas/core/3.1.5/definitions.json +67 -0
  92. data/schemas/core/3.1.5/message_ack.json +11 -0
  93. data/schemas/core/3.1.5/message_not_ack.json +15 -0
  94. data/schemas/core/3.1.5/rsmp.json +133 -0
  95. data/schemas/core/3.1.5/status.json +21 -0
  96. data/schemas/core/3.1.5/status_request.json +5 -0
  97. data/schemas/core/3.1.5/status_response.json +41 -0
  98. data/schemas/core/3.1.5/status_subscribe.json +31 -0
  99. data/schemas/core/3.1.5/status_unsubscribe.json +5 -0
  100. data/schemas/core/3.1.5/status_update.json +41 -0
  101. data/schemas/core/3.1.5/version.json +47 -0
  102. data/schemas/core/3.1.5/watchdog.json +9 -0
  103. data/schemas/core/3.2.0/aggregated_status.json +25 -0
  104. data/schemas/core/3.2.0/aggregated_status_request.json +9 -0
  105. data/schemas/core/3.2.0/alarm.json +71 -0
  106. data/schemas/core/3.2.0/alarm_acknowledge.json +11 -0
  107. data/schemas/core/3.2.0/alarm_issue.json +44 -0
  108. data/schemas/core/3.2.0/alarm_request.json +3 -0
  109. data/schemas/core/3.2.0/alarm_suspend_resume.json +3 -0
  110. data/schemas/core/3.2.0/alarm_suspended_resumed.json +44 -0
  111. data/schemas/core/3.2.0/command_request.json +24 -0
  112. data/schemas/core/3.2.0/command_response.json +34 -0
  113. data/schemas/core/3.2.0/core.json +39 -0
  114. data/schemas/core/3.2.0/definitions.json +67 -0
  115. data/schemas/core/3.2.0/message_ack.json +11 -0
  116. data/schemas/core/3.2.0/message_not_ack.json +15 -0
  117. data/schemas/core/3.2.0/rsmp.json +133 -0
  118. data/schemas/core/3.2.0/status.json +21 -0
  119. data/schemas/core/3.2.0/status_request.json +5 -0
  120. data/schemas/core/3.2.0/status_response.json +41 -0
  121. data/schemas/core/3.2.0/status_subscribe.json +31 -0
  122. data/schemas/core/3.2.0/status_unsubscribe.json +5 -0
  123. data/schemas/core/3.2.0/status_update.json +41 -0
  124. data/schemas/core/3.2.0/version.json +47 -0
  125. data/schemas/core/3.2.0/watchdog.json +9 -0
  126. data/schemas/core/3.2.1/aggregated_status.json +25 -0
  127. data/schemas/core/3.2.1/aggregated_status_request.json +9 -0
  128. data/schemas/core/3.2.1/alarm.json +71 -0
  129. data/schemas/core/3.2.1/alarm_acknowledge.json +11 -0
  130. data/schemas/core/3.2.1/alarm_issue.json +44 -0
  131. data/schemas/core/3.2.1/alarm_request.json +3 -0
  132. data/schemas/core/3.2.1/alarm_suspend_resume.json +3 -0
  133. data/schemas/core/3.2.1/alarm_suspended_resumed.json +44 -0
  134. data/schemas/core/3.2.1/command_request.json +24 -0
  135. data/schemas/core/3.2.1/command_response.json +34 -0
  136. data/schemas/core/3.2.1/core.json +39 -0
  137. data/schemas/core/3.2.1/definitions.json +67 -0
  138. data/schemas/core/3.2.1/message_ack.json +11 -0
  139. data/schemas/core/3.2.1/message_not_ack.json +15 -0
  140. data/schemas/core/3.2.1/rsmp.json +133 -0
  141. data/schemas/core/3.2.1/status.json +21 -0
  142. data/schemas/core/3.2.1/status_request.json +5 -0
  143. data/schemas/core/3.2.1/status_response.json +41 -0
  144. data/schemas/core/3.2.1/status_subscribe.json +31 -0
  145. data/schemas/core/3.2.1/status_unsubscribe.json +5 -0
  146. data/schemas/core/3.2.1/status_update.json +41 -0
  147. data/schemas/core/3.2.1/version.json +47 -0
  148. data/schemas/core/3.2.1/watchdog.json +9 -0
  149. data/schemas/core/3.2.2/aggregated_status.json +25 -0
  150. data/schemas/core/3.2.2/aggregated_status_request.json +9 -0
  151. data/schemas/core/3.2.2/alarm.json +71 -0
  152. data/schemas/core/3.2.2/alarm_acknowledge.json +11 -0
  153. data/schemas/core/3.2.2/alarm_issue.json +44 -0
  154. data/schemas/core/3.2.2/alarm_request.json +3 -0
  155. data/schemas/core/3.2.2/alarm_suspend_resume.json +3 -0
  156. data/schemas/core/3.2.2/alarm_suspended_resumed.json +44 -0
  157. data/schemas/core/3.2.2/command_request.json +24 -0
  158. data/schemas/core/3.2.2/command_response.json +34 -0
  159. data/schemas/core/3.2.2/core.json +39 -0
  160. data/schemas/core/3.2.2/definitions.json +67 -0
  161. data/schemas/core/3.2.2/message_ack.json +11 -0
  162. data/schemas/core/3.2.2/message_not_ack.json +15 -0
  163. data/schemas/core/3.2.2/rsmp.json +133 -0
  164. data/schemas/core/3.2.2/status.json +21 -0
  165. data/schemas/core/3.2.2/status_request.json +5 -0
  166. data/schemas/core/3.2.2/status_response.json +41 -0
  167. data/schemas/core/3.2.2/status_subscribe.json +31 -0
  168. data/schemas/core/3.2.2/status_unsubscribe.json +5 -0
  169. data/schemas/core/3.2.2/status_update.json +41 -0
  170. data/schemas/core/3.2.2/version.json +47 -0
  171. data/schemas/core/3.2.2/watchdog.json +9 -0
  172. data/schemas/tlc/1.0.10/alarms/A0001.json +4 -0
  173. data/schemas/tlc/1.0.10/alarms/A0002.json +4 -0
  174. data/schemas/tlc/1.0.10/alarms/A0003.json +4 -0
  175. data/schemas/tlc/1.0.10/alarms/A0004.json +4 -0
  176. data/schemas/tlc/1.0.10/alarms/A0005.json +4 -0
  177. data/schemas/tlc/1.0.10/alarms/A0006.json +4 -0
  178. data/schemas/tlc/1.0.10/alarms/A0007.json +4 -0
  179. data/schemas/tlc/1.0.10/alarms/A0008.json +30 -0
  180. data/schemas/tlc/1.0.10/alarms/A0009.json +4 -0
  181. data/schemas/tlc/1.0.10/alarms/A0101.json +4 -0
  182. data/schemas/tlc/1.0.10/alarms/A0201.json +35 -0
  183. data/schemas/tlc/1.0.10/alarms/A0202.json +35 -0
  184. data/schemas/tlc/1.0.10/alarms/A0301.json +92 -0
  185. data/schemas/tlc/1.0.10/alarms/A0302.json +115 -0
  186. data/schemas/tlc/1.0.10/alarms/alarms.json +239 -0
  187. data/schemas/tlc/1.0.10/commands/M0001.json +92 -0
  188. data/schemas/tlc/1.0.10/commands/M0002.json +69 -0
  189. data/schemas/tlc/1.0.10/commands/M0003.json +69 -0
  190. data/schemas/tlc/1.0.10/commands/M0004.json +51 -0
  191. data/schemas/tlc/1.0.10/commands/M0005.json +69 -0
  192. data/schemas/tlc/1.0.10/commands/M0006.json +69 -0
  193. data/schemas/tlc/1.0.10/commands/M0007.json +51 -0
  194. data/schemas/tlc/1.0.10/commands/M0008.json +69 -0
  195. data/schemas/tlc/1.0.10/commands/M0010.json +51 -0
  196. data/schemas/tlc/1.0.10/commands/M0011.json +51 -0
  197. data/schemas/tlc/1.0.10/commands/M0012.json +51 -0
  198. data/schemas/tlc/1.0.10/commands/M0013.json +51 -0
  199. data/schemas/tlc/1.0.10/commands/M0019.json +87 -0
  200. data/schemas/tlc/1.0.10/commands/M0103.json +72 -0
  201. data/schemas/tlc/1.0.10/commands/M0104.json +141 -0
  202. data/schemas/tlc/1.0.10/commands/command_requests.json +8 -0
  203. data/schemas/tlc/1.0.10/commands/command_responses.json +8 -0
  204. data/schemas/tlc/1.0.10/commands/commands.json +255 -0
  205. data/schemas/tlc/1.0.10/defs/definitions.json +67 -0
  206. data/schemas/tlc/1.0.10/defs/guards.json +24 -0
  207. data/schemas/tlc/1.0.10/rsmp.json +74 -0
  208. data/schemas/tlc/1.0.10/statuses/S0001.json +91 -0
  209. data/schemas/tlc/1.0.10/statuses/S0002.json +36 -0
  210. data/schemas/tlc/1.0.10/statuses/S0003.json +54 -0
  211. data/schemas/tlc/1.0.10/statuses/S0004.json +54 -0
  212. data/schemas/tlc/1.0.10/statuses/S0005.json +36 -0
  213. data/schemas/tlc/1.0.10/statuses/S0006.json +54 -0
  214. data/schemas/tlc/1.0.10/statuses/S0007.json +54 -0
  215. data/schemas/tlc/1.0.10/statuses/S0008.json +54 -0
  216. data/schemas/tlc/1.0.10/statuses/S0009.json +54 -0
  217. data/schemas/tlc/1.0.10/statuses/S0010.json +54 -0
  218. data/schemas/tlc/1.0.10/statuses/S0011.json +54 -0
  219. data/schemas/tlc/1.0.10/statuses/S0012.json +54 -0
  220. data/schemas/tlc/1.0.10/statuses/S0013.json +54 -0
  221. data/schemas/tlc/1.0.10/statuses/S0014.json +36 -0
  222. data/schemas/tlc/1.0.10/statuses/S0015.json +36 -0
  223. data/schemas/tlc/1.0.10/statuses/S0016.json +36 -0
  224. data/schemas/tlc/1.0.10/statuses/S0017.json +36 -0
  225. data/schemas/tlc/1.0.10/statuses/S0018.json +36 -0
  226. data/schemas/tlc/1.0.10/statuses/S0019.json +36 -0
  227. data/schemas/tlc/1.0.10/statuses/S0020.json +54 -0
  228. data/schemas/tlc/1.0.10/statuses/S0021.json +37 -0
  229. data/schemas/tlc/1.0.10/statuses/S0091.json +57 -0
  230. data/schemas/tlc/1.0.10/statuses/S0092.json +57 -0
  231. data/schemas/tlc/1.0.10/statuses/S0095.json +36 -0
  232. data/schemas/tlc/1.0.10/statuses/S0096.json +126 -0
  233. data/schemas/tlc/1.0.10/statuses/S0201.json +54 -0
  234. data/schemas/tlc/1.0.10/statuses/S0202.json +54 -0
  235. data/schemas/tlc/1.0.10/statuses/S0203.json +54 -0
  236. data/schemas/tlc/1.0.10/statuses/S0204.json +198 -0
  237. data/schemas/tlc/1.0.10/statuses/statuses.json +483 -0
  238. data/schemas/tlc/1.0.10/sxl.yaml +1010 -0
  239. data/schemas/tlc/1.0.13/alarms/A0001.json +4 -0
  240. data/schemas/tlc/1.0.13/alarms/A0002.json +4 -0
  241. data/schemas/tlc/1.0.13/alarms/A0003.json +4 -0
  242. data/schemas/tlc/1.0.13/alarms/A0004.json +4 -0
  243. data/schemas/tlc/1.0.13/alarms/A0005.json +4 -0
  244. data/schemas/tlc/1.0.13/alarms/A0006.json +4 -0
  245. data/schemas/tlc/1.0.13/alarms/A0007.json +4 -0
  246. data/schemas/tlc/1.0.13/alarms/A0008.json +30 -0
  247. data/schemas/tlc/1.0.13/alarms/A0009.json +4 -0
  248. data/schemas/tlc/1.0.13/alarms/A0101.json +4 -0
  249. data/schemas/tlc/1.0.13/alarms/A0201.json +35 -0
  250. data/schemas/tlc/1.0.13/alarms/A0202.json +35 -0
  251. data/schemas/tlc/1.0.13/alarms/A0301.json +92 -0
  252. data/schemas/tlc/1.0.13/alarms/A0302.json +115 -0
  253. data/schemas/tlc/1.0.13/alarms/alarms.json +239 -0
  254. data/schemas/tlc/1.0.13/commands/M0001.json +92 -0
  255. data/schemas/tlc/1.0.13/commands/M0002.json +69 -0
  256. data/schemas/tlc/1.0.13/commands/M0003.json +69 -0
  257. data/schemas/tlc/1.0.13/commands/M0004.json +51 -0
  258. data/schemas/tlc/1.0.13/commands/M0005.json +69 -0
  259. data/schemas/tlc/1.0.13/commands/M0006.json +69 -0
  260. data/schemas/tlc/1.0.13/commands/M0007.json +51 -0
  261. data/schemas/tlc/1.0.13/commands/M0008.json +69 -0
  262. data/schemas/tlc/1.0.13/commands/M0010.json +51 -0
  263. data/schemas/tlc/1.0.13/commands/M0011.json +51 -0
  264. data/schemas/tlc/1.0.13/commands/M0012.json +51 -0
  265. data/schemas/tlc/1.0.13/commands/M0013.json +51 -0
  266. data/schemas/tlc/1.0.13/commands/M0014.json +69 -0
  267. data/schemas/tlc/1.0.13/commands/M0015.json +69 -0
  268. data/schemas/tlc/1.0.13/commands/M0016.json +51 -0
  269. data/schemas/tlc/1.0.13/commands/M0017.json +51 -0
  270. data/schemas/tlc/1.0.13/commands/M0018.json +69 -0
  271. data/schemas/tlc/1.0.13/commands/M0019.json +87 -0
  272. data/schemas/tlc/1.0.13/commands/M0103.json +72 -0
  273. data/schemas/tlc/1.0.13/commands/M0104.json +141 -0
  274. data/schemas/tlc/1.0.13/commands/command_requests.json +8 -0
  275. data/schemas/tlc/1.0.13/commands/command_responses.json +8 -0
  276. data/schemas/tlc/1.0.13/commands/commands.json +335 -0
  277. data/schemas/tlc/1.0.13/defs/definitions.json +67 -0
  278. data/schemas/tlc/1.0.13/defs/guards.json +24 -0
  279. data/schemas/tlc/1.0.13/rsmp.json +74 -0
  280. data/schemas/tlc/1.0.13/statuses/S0001.json +91 -0
  281. data/schemas/tlc/1.0.13/statuses/S0002.json +36 -0
  282. data/schemas/tlc/1.0.13/statuses/S0003.json +54 -0
  283. data/schemas/tlc/1.0.13/statuses/S0004.json +54 -0
  284. data/schemas/tlc/1.0.13/statuses/S0005.json +36 -0
  285. data/schemas/tlc/1.0.13/statuses/S0006.json +54 -0
  286. data/schemas/tlc/1.0.13/statuses/S0007.json +54 -0
  287. data/schemas/tlc/1.0.13/statuses/S0008.json +54 -0
  288. data/schemas/tlc/1.0.13/statuses/S0009.json +54 -0
  289. data/schemas/tlc/1.0.13/statuses/S0010.json +54 -0
  290. data/schemas/tlc/1.0.13/statuses/S0011.json +54 -0
  291. data/schemas/tlc/1.0.13/statuses/S0012.json +54 -0
  292. data/schemas/tlc/1.0.13/statuses/S0013.json +54 -0
  293. data/schemas/tlc/1.0.13/statuses/S0014.json +36 -0
  294. data/schemas/tlc/1.0.13/statuses/S0015.json +36 -0
  295. data/schemas/tlc/1.0.13/statuses/S0016.json +36 -0
  296. data/schemas/tlc/1.0.13/statuses/S0017.json +36 -0
  297. data/schemas/tlc/1.0.13/statuses/S0018.json +36 -0
  298. data/schemas/tlc/1.0.13/statuses/S0019.json +36 -0
  299. data/schemas/tlc/1.0.13/statuses/S0020.json +54 -0
  300. data/schemas/tlc/1.0.13/statuses/S0021.json +37 -0
  301. data/schemas/tlc/1.0.13/statuses/S0022.json +36 -0
  302. data/schemas/tlc/1.0.13/statuses/S0023.json +37 -0
  303. data/schemas/tlc/1.0.13/statuses/S0024.json +37 -0
  304. data/schemas/tlc/1.0.13/statuses/S0025.json +162 -0
  305. data/schemas/tlc/1.0.13/statuses/S0026.json +36 -0
  306. data/schemas/tlc/1.0.13/statuses/S0027.json +36 -0
  307. data/schemas/tlc/1.0.13/statuses/S0028.json +36 -0
  308. data/schemas/tlc/1.0.13/statuses/S0029.json +36 -0
  309. data/schemas/tlc/1.0.13/statuses/S0091.json +57 -0
  310. data/schemas/tlc/1.0.13/statuses/S0092.json +57 -0
  311. data/schemas/tlc/1.0.13/statuses/S0095.json +36 -0
  312. data/schemas/tlc/1.0.13/statuses/S0096.json +126 -0
  313. data/schemas/tlc/1.0.13/statuses/S0201.json +54 -0
  314. data/schemas/tlc/1.0.13/statuses/S0202.json +54 -0
  315. data/schemas/tlc/1.0.13/statuses/S0203.json +54 -0
  316. data/schemas/tlc/1.0.13/statuses/S0204.json +198 -0
  317. data/schemas/tlc/1.0.13/statuses/statuses.json +611 -0
  318. data/schemas/tlc/1.0.13/sxl.yaml +1312 -0
  319. data/schemas/tlc/1.0.14/alarms/A0001.json +4 -0
  320. data/schemas/tlc/1.0.14/alarms/A0002.json +4 -0
  321. data/schemas/tlc/1.0.14/alarms/A0003.json +4 -0
  322. data/schemas/tlc/1.0.14/alarms/A0004.json +4 -0
  323. data/schemas/tlc/1.0.14/alarms/A0005.json +4 -0
  324. data/schemas/tlc/1.0.14/alarms/A0006.json +4 -0
  325. data/schemas/tlc/1.0.14/alarms/A0007.json +4 -0
  326. data/schemas/tlc/1.0.14/alarms/A0008.json +30 -0
  327. data/schemas/tlc/1.0.14/alarms/A0009.json +4 -0
  328. data/schemas/tlc/1.0.14/alarms/A0101.json +4 -0
  329. data/schemas/tlc/1.0.14/alarms/A0201.json +35 -0
  330. data/schemas/tlc/1.0.14/alarms/A0202.json +35 -0
  331. data/schemas/tlc/1.0.14/alarms/A0301.json +92 -0
  332. data/schemas/tlc/1.0.14/alarms/A0302.json +115 -0
  333. data/schemas/tlc/1.0.14/alarms/alarms.json +239 -0
  334. data/schemas/tlc/1.0.14/commands/M0001.json +92 -0
  335. data/schemas/tlc/1.0.14/commands/M0002.json +69 -0
  336. data/schemas/tlc/1.0.14/commands/M0003.json +69 -0
  337. data/schemas/tlc/1.0.14/commands/M0004.json +51 -0
  338. data/schemas/tlc/1.0.14/commands/M0005.json +69 -0
  339. data/schemas/tlc/1.0.14/commands/M0006.json +69 -0
  340. data/schemas/tlc/1.0.14/commands/M0007.json +51 -0
  341. data/schemas/tlc/1.0.14/commands/M0008.json +69 -0
  342. data/schemas/tlc/1.0.14/commands/M0010.json +51 -0
  343. data/schemas/tlc/1.0.14/commands/M0011.json +51 -0
  344. data/schemas/tlc/1.0.14/commands/M0012.json +51 -0
  345. data/schemas/tlc/1.0.14/commands/M0013.json +51 -0
  346. data/schemas/tlc/1.0.14/commands/M0014.json +69 -0
  347. data/schemas/tlc/1.0.14/commands/M0015.json +69 -0
  348. data/schemas/tlc/1.0.14/commands/M0016.json +51 -0
  349. data/schemas/tlc/1.0.14/commands/M0017.json +51 -0
  350. data/schemas/tlc/1.0.14/commands/M0018.json +69 -0
  351. data/schemas/tlc/1.0.14/commands/M0019.json +87 -0
  352. data/schemas/tlc/1.0.14/commands/M0103.json +72 -0
  353. data/schemas/tlc/1.0.14/commands/M0104.json +141 -0
  354. data/schemas/tlc/1.0.14/commands/command_requests.json +8 -0
  355. data/schemas/tlc/1.0.14/commands/command_responses.json +8 -0
  356. data/schemas/tlc/1.0.14/commands/commands.json +335 -0
  357. data/schemas/tlc/1.0.14/defs/definitions.json +67 -0
  358. data/schemas/tlc/1.0.14/defs/guards.json +24 -0
  359. data/schemas/tlc/1.0.14/rsmp.json +74 -0
  360. data/schemas/tlc/1.0.14/statuses/S0001.json +91 -0
  361. data/schemas/tlc/1.0.14/statuses/S0002.json +36 -0
  362. data/schemas/tlc/1.0.14/statuses/S0003.json +54 -0
  363. data/schemas/tlc/1.0.14/statuses/S0004.json +54 -0
  364. data/schemas/tlc/1.0.14/statuses/S0005.json +36 -0
  365. data/schemas/tlc/1.0.14/statuses/S0006.json +54 -0
  366. data/schemas/tlc/1.0.14/statuses/S0007.json +54 -0
  367. data/schemas/tlc/1.0.14/statuses/S0008.json +54 -0
  368. data/schemas/tlc/1.0.14/statuses/S0009.json +54 -0
  369. data/schemas/tlc/1.0.14/statuses/S0010.json +54 -0
  370. data/schemas/tlc/1.0.14/statuses/S0011.json +54 -0
  371. data/schemas/tlc/1.0.14/statuses/S0012.json +54 -0
  372. data/schemas/tlc/1.0.14/statuses/S0013.json +54 -0
  373. data/schemas/tlc/1.0.14/statuses/S0014.json +36 -0
  374. data/schemas/tlc/1.0.14/statuses/S0015.json +36 -0
  375. data/schemas/tlc/1.0.14/statuses/S0016.json +36 -0
  376. data/schemas/tlc/1.0.14/statuses/S0017.json +36 -0
  377. data/schemas/tlc/1.0.14/statuses/S0018.json +36 -0
  378. data/schemas/tlc/1.0.14/statuses/S0019.json +36 -0
  379. data/schemas/tlc/1.0.14/statuses/S0020.json +54 -0
  380. data/schemas/tlc/1.0.14/statuses/S0021.json +37 -0
  381. data/schemas/tlc/1.0.14/statuses/S0022.json +36 -0
  382. data/schemas/tlc/1.0.14/statuses/S0023.json +37 -0
  383. data/schemas/tlc/1.0.14/statuses/S0024.json +37 -0
  384. data/schemas/tlc/1.0.14/statuses/S0025.json +162 -0
  385. data/schemas/tlc/1.0.14/statuses/S0026.json +36 -0
  386. data/schemas/tlc/1.0.14/statuses/S0027.json +36 -0
  387. data/schemas/tlc/1.0.14/statuses/S0028.json +36 -0
  388. data/schemas/tlc/1.0.14/statuses/S0029.json +36 -0
  389. data/schemas/tlc/1.0.14/statuses/S0091.json +57 -0
  390. data/schemas/tlc/1.0.14/statuses/S0092.json +57 -0
  391. data/schemas/tlc/1.0.14/statuses/S0095.json +36 -0
  392. data/schemas/tlc/1.0.14/statuses/S0096.json +126 -0
  393. data/schemas/tlc/1.0.14/statuses/S0201.json +54 -0
  394. data/schemas/tlc/1.0.14/statuses/S0202.json +54 -0
  395. data/schemas/tlc/1.0.14/statuses/S0203.json +54 -0
  396. data/schemas/tlc/1.0.14/statuses/S0204.json +198 -0
  397. data/schemas/tlc/1.0.14/statuses/S0205.json +54 -0
  398. data/schemas/tlc/1.0.14/statuses/S0206.json +54 -0
  399. data/schemas/tlc/1.0.14/statuses/S0207.json +54 -0
  400. data/schemas/tlc/1.0.14/statuses/S0208.json +198 -0
  401. data/schemas/tlc/1.0.14/statuses/statuses.json +675 -0
  402. data/schemas/tlc/1.0.14/sxl.yaml +1450 -0
  403. data/schemas/tlc/1.0.15/alarms/A0001.json +4 -0
  404. data/schemas/tlc/1.0.15/alarms/A0002.json +4 -0
  405. data/schemas/tlc/1.0.15/alarms/A0003.json +4 -0
  406. data/schemas/tlc/1.0.15/alarms/A0004.json +4 -0
  407. data/schemas/tlc/1.0.15/alarms/A0005.json +4 -0
  408. data/schemas/tlc/1.0.15/alarms/A0006.json +4 -0
  409. data/schemas/tlc/1.0.15/alarms/A0007.json +4 -0
  410. data/schemas/tlc/1.0.15/alarms/A0008.json +30 -0
  411. data/schemas/tlc/1.0.15/alarms/A0009.json +4 -0
  412. data/schemas/tlc/1.0.15/alarms/A0010.json +4 -0
  413. data/schemas/tlc/1.0.15/alarms/A0101.json +4 -0
  414. data/schemas/tlc/1.0.15/alarms/A0201.json +35 -0
  415. data/schemas/tlc/1.0.15/alarms/A0202.json +35 -0
  416. data/schemas/tlc/1.0.15/alarms/A0301.json +92 -0
  417. data/schemas/tlc/1.0.15/alarms/A0302.json +115 -0
  418. data/schemas/tlc/1.0.15/alarms/alarms.json +255 -0
  419. data/schemas/tlc/1.0.15/commands/M0001.json +92 -0
  420. data/schemas/tlc/1.0.15/commands/M0002.json +69 -0
  421. data/schemas/tlc/1.0.15/commands/M0003.json +69 -0
  422. data/schemas/tlc/1.0.15/commands/M0004.json +51 -0
  423. data/schemas/tlc/1.0.15/commands/M0005.json +69 -0
  424. data/schemas/tlc/1.0.15/commands/M0006.json +69 -0
  425. data/schemas/tlc/1.0.15/commands/M0007.json +51 -0
  426. data/schemas/tlc/1.0.15/commands/M0008.json +69 -0
  427. data/schemas/tlc/1.0.15/commands/M0010.json +51 -0
  428. data/schemas/tlc/1.0.15/commands/M0011.json +51 -0
  429. data/schemas/tlc/1.0.15/commands/M0012.json +51 -0
  430. data/schemas/tlc/1.0.15/commands/M0013.json +51 -0
  431. data/schemas/tlc/1.0.15/commands/M0014.json +69 -0
  432. data/schemas/tlc/1.0.15/commands/M0015.json +69 -0
  433. data/schemas/tlc/1.0.15/commands/M0016.json +51 -0
  434. data/schemas/tlc/1.0.15/commands/M0017.json +51 -0
  435. data/schemas/tlc/1.0.15/commands/M0018.json +69 -0
  436. data/schemas/tlc/1.0.15/commands/M0019.json +87 -0
  437. data/schemas/tlc/1.0.15/commands/M0020.json +87 -0
  438. data/schemas/tlc/1.0.15/commands/M0021.json +51 -0
  439. data/schemas/tlc/1.0.15/commands/M0103.json +72 -0
  440. data/schemas/tlc/1.0.15/commands/M0104.json +141 -0
  441. data/schemas/tlc/1.0.15/commands/command_requests.json +8 -0
  442. data/schemas/tlc/1.0.15/commands/command_responses.json +8 -0
  443. data/schemas/tlc/1.0.15/commands/commands.json +367 -0
  444. data/schemas/tlc/1.0.15/defs/definitions.json +67 -0
  445. data/schemas/tlc/1.0.15/defs/guards.json +24 -0
  446. data/schemas/tlc/1.0.15/rsmp.json +74 -0
  447. data/schemas/tlc/1.0.15/statuses/S0001.json +91 -0
  448. data/schemas/tlc/1.0.15/statuses/S0002.json +36 -0
  449. data/schemas/tlc/1.0.15/statuses/S0003.json +54 -0
  450. data/schemas/tlc/1.0.15/statuses/S0004.json +54 -0
  451. data/schemas/tlc/1.0.15/statuses/S0005.json +36 -0
  452. data/schemas/tlc/1.0.15/statuses/S0006.json +54 -0
  453. data/schemas/tlc/1.0.15/statuses/S0007.json +54 -0
  454. data/schemas/tlc/1.0.15/statuses/S0008.json +54 -0
  455. data/schemas/tlc/1.0.15/statuses/S0009.json +54 -0
  456. data/schemas/tlc/1.0.15/statuses/S0010.json +54 -0
  457. data/schemas/tlc/1.0.15/statuses/S0011.json +54 -0
  458. data/schemas/tlc/1.0.15/statuses/S0012.json +54 -0
  459. data/schemas/tlc/1.0.15/statuses/S0013.json +54 -0
  460. data/schemas/tlc/1.0.15/statuses/S0014.json +36 -0
  461. data/schemas/tlc/1.0.15/statuses/S0015.json +36 -0
  462. data/schemas/tlc/1.0.15/statuses/S0016.json +36 -0
  463. data/schemas/tlc/1.0.15/statuses/S0017.json +36 -0
  464. data/schemas/tlc/1.0.15/statuses/S0018.json +36 -0
  465. data/schemas/tlc/1.0.15/statuses/S0019.json +36 -0
  466. data/schemas/tlc/1.0.15/statuses/S0020.json +54 -0
  467. data/schemas/tlc/1.0.15/statuses/S0021.json +37 -0
  468. data/schemas/tlc/1.0.15/statuses/S0022.json +36 -0
  469. data/schemas/tlc/1.0.15/statuses/S0023.json +37 -0
  470. data/schemas/tlc/1.0.15/statuses/S0024.json +37 -0
  471. data/schemas/tlc/1.0.15/statuses/S0025.json +162 -0
  472. data/schemas/tlc/1.0.15/statuses/S0026.json +36 -0
  473. data/schemas/tlc/1.0.15/statuses/S0027.json +36 -0
  474. data/schemas/tlc/1.0.15/statuses/S0028.json +36 -0
  475. data/schemas/tlc/1.0.15/statuses/S0029.json +36 -0
  476. data/schemas/tlc/1.0.15/statuses/S0030.json +36 -0
  477. data/schemas/tlc/1.0.15/statuses/S0031.json +36 -0
  478. data/schemas/tlc/1.0.15/statuses/S0091.json +57 -0
  479. data/schemas/tlc/1.0.15/statuses/S0092.json +57 -0
  480. data/schemas/tlc/1.0.15/statuses/S0095.json +36 -0
  481. data/schemas/tlc/1.0.15/statuses/S0096.json +126 -0
  482. data/schemas/tlc/1.0.15/statuses/S0097.json +54 -0
  483. data/schemas/tlc/1.0.15/statuses/S0098.json +72 -0
  484. data/schemas/tlc/1.0.15/statuses/S0201.json +54 -0
  485. data/schemas/tlc/1.0.15/statuses/S0202.json +54 -0
  486. data/schemas/tlc/1.0.15/statuses/S0203.json +54 -0
  487. data/schemas/tlc/1.0.15/statuses/S0204.json +198 -0
  488. data/schemas/tlc/1.0.15/statuses/S0205.json +54 -0
  489. data/schemas/tlc/1.0.15/statuses/S0206.json +54 -0
  490. data/schemas/tlc/1.0.15/statuses/S0207.json +54 -0
  491. data/schemas/tlc/1.0.15/statuses/S0208.json +198 -0
  492. data/schemas/tlc/1.0.15/statuses/statuses.json +739 -0
  493. data/schemas/tlc/1.0.15/sxl.yaml +1589 -0
  494. data/schemas/tlc/1.0.7/alarms/A0001.json +4 -0
  495. data/schemas/tlc/1.0.7/alarms/A0002.json +4 -0
  496. data/schemas/tlc/1.0.7/alarms/A0003.json +4 -0
  497. data/schemas/tlc/1.0.7/alarms/A0004.json +4 -0
  498. data/schemas/tlc/1.0.7/alarms/A0005.json +4 -0
  499. data/schemas/tlc/1.0.7/alarms/A0006.json +4 -0
  500. data/schemas/tlc/1.0.7/alarms/A0007.json +4 -0
  501. data/schemas/tlc/1.0.7/alarms/A0008.json +30 -0
  502. data/schemas/tlc/1.0.7/alarms/A0009.json +4 -0
  503. data/schemas/tlc/1.0.7/alarms/A0101.json +4 -0
  504. data/schemas/tlc/1.0.7/alarms/A0201.json +35 -0
  505. data/schemas/tlc/1.0.7/alarms/A0202.json +35 -0
  506. data/schemas/tlc/1.0.7/alarms/A0301.json +92 -0
  507. data/schemas/tlc/1.0.7/alarms/A0302.json +115 -0
  508. data/schemas/tlc/1.0.7/alarms/alarms.json +239 -0
  509. data/schemas/tlc/1.0.7/commands/M0001.json +92 -0
  510. data/schemas/tlc/1.0.7/commands/M0002.json +69 -0
  511. data/schemas/tlc/1.0.7/commands/M0003.json +69 -0
  512. data/schemas/tlc/1.0.7/commands/M0004.json +51 -0
  513. data/schemas/tlc/1.0.7/commands/M0005.json +69 -0
  514. data/schemas/tlc/1.0.7/commands/M0006.json +69 -0
  515. data/schemas/tlc/1.0.7/commands/M0007.json +51 -0
  516. data/schemas/tlc/1.0.7/commands/M0008.json +69 -0
  517. data/schemas/tlc/1.0.7/commands/M0010.json +51 -0
  518. data/schemas/tlc/1.0.7/commands/M0011.json +51 -0
  519. data/schemas/tlc/1.0.7/commands/M0019.json +87 -0
  520. data/schemas/tlc/1.0.7/commands/M0103.json +72 -0
  521. data/schemas/tlc/1.0.7/commands/M0104.json +141 -0
  522. data/schemas/tlc/1.0.7/commands/command_requests.json +8 -0
  523. data/schemas/tlc/1.0.7/commands/command_responses.json +8 -0
  524. data/schemas/tlc/1.0.7/commands/commands.json +223 -0
  525. data/schemas/tlc/1.0.7/defs/definitions.json +67 -0
  526. data/schemas/tlc/1.0.7/defs/guards.json +24 -0
  527. data/schemas/tlc/1.0.7/rsmp.json +74 -0
  528. data/schemas/tlc/1.0.7/statuses/S0001.json +91 -0
  529. data/schemas/tlc/1.0.7/statuses/S0002.json +36 -0
  530. data/schemas/tlc/1.0.7/statuses/S0003.json +54 -0
  531. data/schemas/tlc/1.0.7/statuses/S0004.json +54 -0
  532. data/schemas/tlc/1.0.7/statuses/S0005.json +36 -0
  533. data/schemas/tlc/1.0.7/statuses/S0006.json +54 -0
  534. data/schemas/tlc/1.0.7/statuses/S0007.json +54 -0
  535. data/schemas/tlc/1.0.7/statuses/S0008.json +54 -0
  536. data/schemas/tlc/1.0.7/statuses/S0009.json +54 -0
  537. data/schemas/tlc/1.0.7/statuses/S0010.json +54 -0
  538. data/schemas/tlc/1.0.7/statuses/S0011.json +54 -0
  539. data/schemas/tlc/1.0.7/statuses/S0012.json +54 -0
  540. data/schemas/tlc/1.0.7/statuses/S0013.json +54 -0
  541. data/schemas/tlc/1.0.7/statuses/S0014.json +36 -0
  542. data/schemas/tlc/1.0.7/statuses/S0015.json +36 -0
  543. data/schemas/tlc/1.0.7/statuses/S0016.json +36 -0
  544. data/schemas/tlc/1.0.7/statuses/S0017.json +36 -0
  545. data/schemas/tlc/1.0.7/statuses/S0018.json +36 -0
  546. data/schemas/tlc/1.0.7/statuses/S0019.json +36 -0
  547. data/schemas/tlc/1.0.7/statuses/S0020.json +54 -0
  548. data/schemas/tlc/1.0.7/statuses/S0021.json +37 -0
  549. data/schemas/tlc/1.0.7/statuses/S0025.json +162 -0
  550. data/schemas/tlc/1.0.7/statuses/S0091.json +57 -0
  551. data/schemas/tlc/1.0.7/statuses/S0092.json +57 -0
  552. data/schemas/tlc/1.0.7/statuses/S0095.json +36 -0
  553. data/schemas/tlc/1.0.7/statuses/S0096.json +126 -0
  554. data/schemas/tlc/1.0.7/statuses/S0201.json +54 -0
  555. data/schemas/tlc/1.0.7/statuses/S0202.json +54 -0
  556. data/schemas/tlc/1.0.7/statuses/S0203.json +54 -0
  557. data/schemas/tlc/1.0.7/statuses/S0204.json +198 -0
  558. data/schemas/tlc/1.0.7/statuses/statuses.json +499 -0
  559. data/schemas/tlc/1.0.7/sxl.yaml +981 -0
  560. data/schemas/tlc/1.0.8/alarms/A0001.json +4 -0
  561. data/schemas/tlc/1.0.8/alarms/A0002.json +4 -0
  562. data/schemas/tlc/1.0.8/alarms/A0003.json +4 -0
  563. data/schemas/tlc/1.0.8/alarms/A0004.json +4 -0
  564. data/schemas/tlc/1.0.8/alarms/A0005.json +4 -0
  565. data/schemas/tlc/1.0.8/alarms/A0006.json +4 -0
  566. data/schemas/tlc/1.0.8/alarms/A0007.json +4 -0
  567. data/schemas/tlc/1.0.8/alarms/A0008.json +30 -0
  568. data/schemas/tlc/1.0.8/alarms/A0009.json +4 -0
  569. data/schemas/tlc/1.0.8/alarms/A0101.json +4 -0
  570. data/schemas/tlc/1.0.8/alarms/A0201.json +35 -0
  571. data/schemas/tlc/1.0.8/alarms/A0202.json +35 -0
  572. data/schemas/tlc/1.0.8/alarms/A0301.json +92 -0
  573. data/schemas/tlc/1.0.8/alarms/A0302.json +115 -0
  574. data/schemas/tlc/1.0.8/alarms/alarms.json +239 -0
  575. data/schemas/tlc/1.0.8/commands/M0001.json +92 -0
  576. data/schemas/tlc/1.0.8/commands/M0002.json +69 -0
  577. data/schemas/tlc/1.0.8/commands/M0003.json +69 -0
  578. data/schemas/tlc/1.0.8/commands/M0004.json +51 -0
  579. data/schemas/tlc/1.0.8/commands/M0005.json +69 -0
  580. data/schemas/tlc/1.0.8/commands/M0006.json +69 -0
  581. data/schemas/tlc/1.0.8/commands/M0007.json +51 -0
  582. data/schemas/tlc/1.0.8/commands/M0008.json +69 -0
  583. data/schemas/tlc/1.0.8/commands/M0010.json +51 -0
  584. data/schemas/tlc/1.0.8/commands/M0011.json +51 -0
  585. data/schemas/tlc/1.0.8/commands/M0012.json +51 -0
  586. data/schemas/tlc/1.0.8/commands/M0013.json +51 -0
  587. data/schemas/tlc/1.0.8/commands/M0019.json +87 -0
  588. data/schemas/tlc/1.0.8/commands/M0103.json +72 -0
  589. data/schemas/tlc/1.0.8/commands/M0104.json +141 -0
  590. data/schemas/tlc/1.0.8/commands/command_requests.json +8 -0
  591. data/schemas/tlc/1.0.8/commands/command_responses.json +8 -0
  592. data/schemas/tlc/1.0.8/commands/commands.json +255 -0
  593. data/schemas/tlc/1.0.8/defs/definitions.json +67 -0
  594. data/schemas/tlc/1.0.8/defs/guards.json +24 -0
  595. data/schemas/tlc/1.0.8/rsmp.json +74 -0
  596. data/schemas/tlc/1.0.8/statuses/S0001.json +91 -0
  597. data/schemas/tlc/1.0.8/statuses/S0002.json +36 -0
  598. data/schemas/tlc/1.0.8/statuses/S0003.json +54 -0
  599. data/schemas/tlc/1.0.8/statuses/S0004.json +54 -0
  600. data/schemas/tlc/1.0.8/statuses/S0005.json +36 -0
  601. data/schemas/tlc/1.0.8/statuses/S0006.json +54 -0
  602. data/schemas/tlc/1.0.8/statuses/S0007.json +54 -0
  603. data/schemas/tlc/1.0.8/statuses/S0008.json +54 -0
  604. data/schemas/tlc/1.0.8/statuses/S0009.json +54 -0
  605. data/schemas/tlc/1.0.8/statuses/S0010.json +54 -0
  606. data/schemas/tlc/1.0.8/statuses/S0011.json +54 -0
  607. data/schemas/tlc/1.0.8/statuses/S0012.json +54 -0
  608. data/schemas/tlc/1.0.8/statuses/S0013.json +54 -0
  609. data/schemas/tlc/1.0.8/statuses/S0014.json +36 -0
  610. data/schemas/tlc/1.0.8/statuses/S0015.json +36 -0
  611. data/schemas/tlc/1.0.8/statuses/S0016.json +36 -0
  612. data/schemas/tlc/1.0.8/statuses/S0017.json +36 -0
  613. data/schemas/tlc/1.0.8/statuses/S0018.json +36 -0
  614. data/schemas/tlc/1.0.8/statuses/S0019.json +36 -0
  615. data/schemas/tlc/1.0.8/statuses/S0020.json +54 -0
  616. data/schemas/tlc/1.0.8/statuses/S0021.json +37 -0
  617. data/schemas/tlc/1.0.8/statuses/S0025.json +181 -0
  618. data/schemas/tlc/1.0.8/statuses/S0091.json +57 -0
  619. data/schemas/tlc/1.0.8/statuses/S0092.json +57 -0
  620. data/schemas/tlc/1.0.8/statuses/S0095.json +36 -0
  621. data/schemas/tlc/1.0.8/statuses/S0096.json +126 -0
  622. data/schemas/tlc/1.0.8/statuses/S0201.json +54 -0
  623. data/schemas/tlc/1.0.8/statuses/S0202.json +54 -0
  624. data/schemas/tlc/1.0.8/statuses/S0203.json +54 -0
  625. data/schemas/tlc/1.0.8/statuses/S0204.json +198 -0
  626. data/schemas/tlc/1.0.8/statuses/statuses.json +483 -0
  627. data/schemas/tlc/1.0.8/sxl.yaml +1010 -0
  628. data/schemas/tlc/1.0.9/alarms/A0001.json +4 -0
  629. data/schemas/tlc/1.0.9/alarms/A0002.json +4 -0
  630. data/schemas/tlc/1.0.9/alarms/A0003.json +4 -0
  631. data/schemas/tlc/1.0.9/alarms/A0004.json +4 -0
  632. data/schemas/tlc/1.0.9/alarms/A0005.json +4 -0
  633. data/schemas/tlc/1.0.9/alarms/A0006.json +4 -0
  634. data/schemas/tlc/1.0.9/alarms/A0007.json +4 -0
  635. data/schemas/tlc/1.0.9/alarms/A0008.json +30 -0
  636. data/schemas/tlc/1.0.9/alarms/A0009.json +4 -0
  637. data/schemas/tlc/1.0.9/alarms/A0101.json +4 -0
  638. data/schemas/tlc/1.0.9/alarms/A0201.json +35 -0
  639. data/schemas/tlc/1.0.9/alarms/A0202.json +35 -0
  640. data/schemas/tlc/1.0.9/alarms/A0301.json +92 -0
  641. data/schemas/tlc/1.0.9/alarms/A0302.json +115 -0
  642. data/schemas/tlc/1.0.9/alarms/alarms.json +239 -0
  643. data/schemas/tlc/1.0.9/commands/M0001.json +92 -0
  644. data/schemas/tlc/1.0.9/commands/M0002.json +69 -0
  645. data/schemas/tlc/1.0.9/commands/M0003.json +69 -0
  646. data/schemas/tlc/1.0.9/commands/M0004.json +51 -0
  647. data/schemas/tlc/1.0.9/commands/M0005.json +69 -0
  648. data/schemas/tlc/1.0.9/commands/M0006.json +69 -0
  649. data/schemas/tlc/1.0.9/commands/M0007.json +51 -0
  650. data/schemas/tlc/1.0.9/commands/M0008.json +69 -0
  651. data/schemas/tlc/1.0.9/commands/M0010.json +51 -0
  652. data/schemas/tlc/1.0.9/commands/M0011.json +51 -0
  653. data/schemas/tlc/1.0.9/commands/M0012.json +51 -0
  654. data/schemas/tlc/1.0.9/commands/M0013.json +51 -0
  655. data/schemas/tlc/1.0.9/commands/M0019.json +87 -0
  656. data/schemas/tlc/1.0.9/commands/M0103.json +72 -0
  657. data/schemas/tlc/1.0.9/commands/M0104.json +141 -0
  658. data/schemas/tlc/1.0.9/commands/command_requests.json +8 -0
  659. data/schemas/tlc/1.0.9/commands/command_responses.json +8 -0
  660. data/schemas/tlc/1.0.9/commands/commands.json +255 -0
  661. data/schemas/tlc/1.0.9/defs/definitions.json +67 -0
  662. data/schemas/tlc/1.0.9/defs/guards.json +24 -0
  663. data/schemas/tlc/1.0.9/rsmp.json +74 -0
  664. data/schemas/tlc/1.0.9/statuses/S0001.json +91 -0
  665. data/schemas/tlc/1.0.9/statuses/S0002.json +36 -0
  666. data/schemas/tlc/1.0.9/statuses/S0003.json +54 -0
  667. data/schemas/tlc/1.0.9/statuses/S0004.json +54 -0
  668. data/schemas/tlc/1.0.9/statuses/S0005.json +36 -0
  669. data/schemas/tlc/1.0.9/statuses/S0006.json +54 -0
  670. data/schemas/tlc/1.0.9/statuses/S0007.json +54 -0
  671. data/schemas/tlc/1.0.9/statuses/S0008.json +54 -0
  672. data/schemas/tlc/1.0.9/statuses/S0009.json +54 -0
  673. data/schemas/tlc/1.0.9/statuses/S0010.json +54 -0
  674. data/schemas/tlc/1.0.9/statuses/S0011.json +54 -0
  675. data/schemas/tlc/1.0.9/statuses/S0012.json +54 -0
  676. data/schemas/tlc/1.0.9/statuses/S0013.json +54 -0
  677. data/schemas/tlc/1.0.9/statuses/S0014.json +36 -0
  678. data/schemas/tlc/1.0.9/statuses/S0015.json +36 -0
  679. data/schemas/tlc/1.0.9/statuses/S0016.json +36 -0
  680. data/schemas/tlc/1.0.9/statuses/S0017.json +36 -0
  681. data/schemas/tlc/1.0.9/statuses/S0018.json +36 -0
  682. data/schemas/tlc/1.0.9/statuses/S0019.json +36 -0
  683. data/schemas/tlc/1.0.9/statuses/S0020.json +54 -0
  684. data/schemas/tlc/1.0.9/statuses/S0021.json +37 -0
  685. data/schemas/tlc/1.0.9/statuses/S0025.json +181 -0
  686. data/schemas/tlc/1.0.9/statuses/S0091.json +57 -0
  687. data/schemas/tlc/1.0.9/statuses/S0092.json +57 -0
  688. data/schemas/tlc/1.0.9/statuses/S0095.json +36 -0
  689. data/schemas/tlc/1.0.9/statuses/S0096.json +126 -0
  690. data/schemas/tlc/1.0.9/statuses/S0201.json +54 -0
  691. data/schemas/tlc/1.0.9/statuses/S0202.json +54 -0
  692. data/schemas/tlc/1.0.9/statuses/S0203.json +54 -0
  693. data/schemas/tlc/1.0.9/statuses/S0204.json +198 -0
  694. data/schemas/tlc/1.0.9/statuses/statuses.json +483 -0
  695. data/schemas/tlc/1.0.9/sxl.yaml +1010 -0
  696. data/schemas/tlc/1.1.0/alarms/A0001.json +4 -0
  697. data/schemas/tlc/1.1.0/alarms/A0002.json +4 -0
  698. data/schemas/tlc/1.1.0/alarms/A0003.json +4 -0
  699. data/schemas/tlc/1.1.0/alarms/A0004.json +4 -0
  700. data/schemas/tlc/1.1.0/alarms/A0005.json +4 -0
  701. data/schemas/tlc/1.1.0/alarms/A0006.json +4 -0
  702. data/schemas/tlc/1.1.0/alarms/A0007.json +34 -0
  703. data/schemas/tlc/1.1.0/alarms/A0008.json +30 -0
  704. data/schemas/tlc/1.1.0/alarms/A0009.json +4 -0
  705. data/schemas/tlc/1.1.0/alarms/A0010.json +4 -0
  706. data/schemas/tlc/1.1.0/alarms/A0101.json +4 -0
  707. data/schemas/tlc/1.1.0/alarms/A0201.json +35 -0
  708. data/schemas/tlc/1.1.0/alarms/A0202.json +35 -0
  709. data/schemas/tlc/1.1.0/alarms/A0301.json +92 -0
  710. data/schemas/tlc/1.1.0/alarms/A0302.json +115 -0
  711. data/schemas/tlc/1.1.0/alarms/A0303.json +92 -0
  712. data/schemas/tlc/1.1.0/alarms/A0304.json +115 -0
  713. data/schemas/tlc/1.1.0/alarms/alarms.json +287 -0
  714. data/schemas/tlc/1.1.0/commands/M0001.json +92 -0
  715. data/schemas/tlc/1.1.0/commands/M0002.json +69 -0
  716. data/schemas/tlc/1.1.0/commands/M0003.json +69 -0
  717. data/schemas/tlc/1.1.0/commands/M0004.json +51 -0
  718. data/schemas/tlc/1.1.0/commands/M0005.json +69 -0
  719. data/schemas/tlc/1.1.0/commands/M0006.json +69 -0
  720. data/schemas/tlc/1.1.0/commands/M0007.json +51 -0
  721. data/schemas/tlc/1.1.0/commands/M0008.json +69 -0
  722. data/schemas/tlc/1.1.0/commands/M0010.json +51 -0
  723. data/schemas/tlc/1.1.0/commands/M0011.json +51 -0
  724. data/schemas/tlc/1.1.0/commands/M0012.json +51 -0
  725. data/schemas/tlc/1.1.0/commands/M0013.json +51 -0
  726. data/schemas/tlc/1.1.0/commands/M0014.json +69 -0
  727. data/schemas/tlc/1.1.0/commands/M0015.json +69 -0
  728. data/schemas/tlc/1.1.0/commands/M0016.json +51 -0
  729. data/schemas/tlc/1.1.0/commands/M0017.json +51 -0
  730. data/schemas/tlc/1.1.0/commands/M0018.json +69 -0
  731. data/schemas/tlc/1.1.0/commands/M0019.json +87 -0
  732. data/schemas/tlc/1.1.0/commands/M0020.json +87 -0
  733. data/schemas/tlc/1.1.0/commands/M0021.json +51 -0
  734. data/schemas/tlc/1.1.0/commands/M0022.json +249 -0
  735. data/schemas/tlc/1.1.0/commands/M0023.json +51 -0
  736. data/schemas/tlc/1.1.0/commands/M0103.json +72 -0
  737. data/schemas/tlc/1.1.0/commands/M0104.json +141 -0
  738. data/schemas/tlc/1.1.0/commands/command_requests.json +8 -0
  739. data/schemas/tlc/1.1.0/commands/command_responses.json +8 -0
  740. data/schemas/tlc/1.1.0/commands/commands.json +399 -0
  741. data/schemas/tlc/1.1.0/defs/definitions.json +67 -0
  742. data/schemas/tlc/1.1.0/defs/guards.json +24 -0
  743. data/schemas/tlc/1.1.0/rsmp.json +74 -0
  744. data/schemas/tlc/1.1.0/statuses/S0001.json +91 -0
  745. data/schemas/tlc/1.1.0/statuses/S0002.json +36 -0
  746. data/schemas/tlc/1.1.0/statuses/S0003.json +54 -0
  747. data/schemas/tlc/1.1.0/statuses/S0004.json +54 -0
  748. data/schemas/tlc/1.1.0/statuses/S0005.json +36 -0
  749. data/schemas/tlc/1.1.0/statuses/S0006.json +54 -0
  750. data/schemas/tlc/1.1.0/statuses/S0007.json +73 -0
  751. data/schemas/tlc/1.1.0/statuses/S0008.json +73 -0
  752. data/schemas/tlc/1.1.0/statuses/S0009.json +73 -0
  753. data/schemas/tlc/1.1.0/statuses/S0010.json +73 -0
  754. data/schemas/tlc/1.1.0/statuses/S0011.json +73 -0
  755. data/schemas/tlc/1.1.0/statuses/S0012.json +73 -0
  756. data/schemas/tlc/1.1.0/statuses/S0013.json +54 -0
  757. data/schemas/tlc/1.1.0/statuses/S0014.json +62 -0
  758. data/schemas/tlc/1.1.0/statuses/S0015.json +62 -0
  759. data/schemas/tlc/1.1.0/statuses/S0016.json +36 -0
  760. data/schemas/tlc/1.1.0/statuses/S0017.json +36 -0
  761. data/schemas/tlc/1.1.0/statuses/S0018.json +36 -0
  762. data/schemas/tlc/1.1.0/statuses/S0019.json +36 -0
  763. data/schemas/tlc/1.1.0/statuses/S0020.json +54 -0
  764. data/schemas/tlc/1.1.0/statuses/S0021.json +37 -0
  765. data/schemas/tlc/1.1.0/statuses/S0022.json +36 -0
  766. data/schemas/tlc/1.1.0/statuses/S0023.json +37 -0
  767. data/schemas/tlc/1.1.0/statuses/S0024.json +37 -0
  768. data/schemas/tlc/1.1.0/statuses/S0025.json +162 -0
  769. data/schemas/tlc/1.1.0/statuses/S0026.json +36 -0
  770. data/schemas/tlc/1.1.0/statuses/S0027.json +36 -0
  771. data/schemas/tlc/1.1.0/statuses/S0028.json +36 -0
  772. data/schemas/tlc/1.1.0/statuses/S0029.json +36 -0
  773. data/schemas/tlc/1.1.0/statuses/S0030.json +36 -0
  774. data/schemas/tlc/1.1.0/statuses/S0031.json +36 -0
  775. data/schemas/tlc/1.1.0/statuses/S0032.json +73 -0
  776. data/schemas/tlc/1.1.0/statuses/S0033.json +77 -0
  777. data/schemas/tlc/1.1.0/statuses/S0034.json +36 -0
  778. data/schemas/tlc/1.1.0/statuses/S0091.json +40 -0
  779. data/schemas/tlc/1.1.0/statuses/S0092.json +40 -0
  780. data/schemas/tlc/1.1.0/statuses/S0095.json +36 -0
  781. data/schemas/tlc/1.1.0/statuses/S0096.json +126 -0
  782. data/schemas/tlc/1.1.0/statuses/S0097.json +54 -0
  783. data/schemas/tlc/1.1.0/statuses/S0098.json +72 -0
  784. data/schemas/tlc/1.1.0/statuses/S0201.json +54 -0
  785. data/schemas/tlc/1.1.0/statuses/S0202.json +54 -0
  786. data/schemas/tlc/1.1.0/statuses/S0203.json +54 -0
  787. data/schemas/tlc/1.1.0/statuses/S0204.json +198 -0
  788. data/schemas/tlc/1.1.0/statuses/S0205.json +54 -0
  789. data/schemas/tlc/1.1.0/statuses/S0206.json +54 -0
  790. data/schemas/tlc/1.1.0/statuses/S0207.json +54 -0
  791. data/schemas/tlc/1.1.0/statuses/S0208.json +198 -0
  792. data/schemas/tlc/1.1.0/statuses/statuses.json +787 -0
  793. data/schemas/tlc/1.1.0/sxl.yaml +2106 -0
  794. data/schemas/tlc/1.2.0/alarms/A0001.json +4 -0
  795. data/schemas/tlc/1.2.0/alarms/A0002.json +4 -0
  796. data/schemas/tlc/1.2.0/alarms/A0003.json +4 -0
  797. data/schemas/tlc/1.2.0/alarms/A0004.json +4 -0
  798. data/schemas/tlc/1.2.0/alarms/A0005.json +4 -0
  799. data/schemas/tlc/1.2.0/alarms/A0006.json +4 -0
  800. data/schemas/tlc/1.2.0/alarms/A0007.json +34 -0
  801. data/schemas/tlc/1.2.0/alarms/A0008.json +30 -0
  802. data/schemas/tlc/1.2.0/alarms/A0009.json +4 -0
  803. data/schemas/tlc/1.2.0/alarms/A0010.json +4 -0
  804. data/schemas/tlc/1.2.0/alarms/A0101.json +4 -0
  805. data/schemas/tlc/1.2.0/alarms/A0201.json +35 -0
  806. data/schemas/tlc/1.2.0/alarms/A0202.json +35 -0
  807. data/schemas/tlc/1.2.0/alarms/A0301.json +92 -0
  808. data/schemas/tlc/1.2.0/alarms/A0302.json +115 -0
  809. data/schemas/tlc/1.2.0/alarms/A0303.json +92 -0
  810. data/schemas/tlc/1.2.0/alarms/A0304.json +115 -0
  811. data/schemas/tlc/1.2.0/alarms/alarms.json +287 -0
  812. data/schemas/tlc/1.2.0/commands/M0001.json +92 -0
  813. data/schemas/tlc/1.2.0/commands/M0002.json +69 -0
  814. data/schemas/tlc/1.2.0/commands/M0003.json +69 -0
  815. data/schemas/tlc/1.2.0/commands/M0004.json +51 -0
  816. data/schemas/tlc/1.2.0/commands/M0005.json +69 -0
  817. data/schemas/tlc/1.2.0/commands/M0006.json +69 -0
  818. data/schemas/tlc/1.2.0/commands/M0007.json +51 -0
  819. data/schemas/tlc/1.2.0/commands/M0008.json +69 -0
  820. data/schemas/tlc/1.2.0/commands/M0010.json +51 -0
  821. data/schemas/tlc/1.2.0/commands/M0011.json +51 -0
  822. data/schemas/tlc/1.2.0/commands/M0012.json +51 -0
  823. data/schemas/tlc/1.2.0/commands/M0013.json +51 -0
  824. data/schemas/tlc/1.2.0/commands/M0014.json +69 -0
  825. data/schemas/tlc/1.2.0/commands/M0015.json +69 -0
  826. data/schemas/tlc/1.2.0/commands/M0016.json +51 -0
  827. data/schemas/tlc/1.2.0/commands/M0017.json +51 -0
  828. data/schemas/tlc/1.2.0/commands/M0018.json +69 -0
  829. data/schemas/tlc/1.2.0/commands/M0019.json +87 -0
  830. data/schemas/tlc/1.2.0/commands/M0020.json +87 -0
  831. data/schemas/tlc/1.2.0/commands/M0021.json +51 -0
  832. data/schemas/tlc/1.2.0/commands/M0022.json +249 -0
  833. data/schemas/tlc/1.2.0/commands/M0023.json +51 -0
  834. data/schemas/tlc/1.2.0/commands/M0103.json +72 -0
  835. data/schemas/tlc/1.2.0/commands/M0104.json +141 -0
  836. data/schemas/tlc/1.2.0/commands/command_requests.json +8 -0
  837. data/schemas/tlc/1.2.0/commands/command_responses.json +8 -0
  838. data/schemas/tlc/1.2.0/commands/commands.json +399 -0
  839. data/schemas/tlc/1.2.0/defs/definitions.json +67 -0
  840. data/schemas/tlc/1.2.0/defs/guards.json +24 -0
  841. data/schemas/tlc/1.2.0/rsmp.json +74 -0
  842. data/schemas/tlc/1.2.0/statuses/S0001.json +91 -0
  843. data/schemas/tlc/1.2.0/statuses/S0002.json +36 -0
  844. data/schemas/tlc/1.2.0/statuses/S0003.json +36 -0
  845. data/schemas/tlc/1.2.0/statuses/S0004.json +36 -0
  846. data/schemas/tlc/1.2.0/statuses/S0005.json +72 -0
  847. data/schemas/tlc/1.2.0/statuses/S0006.json +54 -0
  848. data/schemas/tlc/1.2.0/statuses/S0007.json +73 -0
  849. data/schemas/tlc/1.2.0/statuses/S0008.json +73 -0
  850. data/schemas/tlc/1.2.0/statuses/S0009.json +73 -0
  851. data/schemas/tlc/1.2.0/statuses/S0010.json +73 -0
  852. data/schemas/tlc/1.2.0/statuses/S0011.json +73 -0
  853. data/schemas/tlc/1.2.0/statuses/S0012.json +73 -0
  854. data/schemas/tlc/1.2.0/statuses/S0013.json +54 -0
  855. data/schemas/tlc/1.2.0/statuses/S0014.json +62 -0
  856. data/schemas/tlc/1.2.0/statuses/S0015.json +62 -0
  857. data/schemas/tlc/1.2.0/statuses/S0016.json +36 -0
  858. data/schemas/tlc/1.2.0/statuses/S0017.json +36 -0
  859. data/schemas/tlc/1.2.0/statuses/S0018.json +61 -0
  860. data/schemas/tlc/1.2.0/statuses/S0019.json +36 -0
  861. data/schemas/tlc/1.2.0/statuses/S0020.json +54 -0
  862. data/schemas/tlc/1.2.0/statuses/S0021.json +37 -0
  863. data/schemas/tlc/1.2.0/statuses/S0022.json +36 -0
  864. data/schemas/tlc/1.2.0/statuses/S0023.json +37 -0
  865. data/schemas/tlc/1.2.0/statuses/S0024.json +37 -0
  866. data/schemas/tlc/1.2.0/statuses/S0025.json +162 -0
  867. data/schemas/tlc/1.2.0/statuses/S0026.json +36 -0
  868. data/schemas/tlc/1.2.0/statuses/S0027.json +36 -0
  869. data/schemas/tlc/1.2.0/statuses/S0028.json +36 -0
  870. data/schemas/tlc/1.2.0/statuses/S0029.json +36 -0
  871. data/schemas/tlc/1.2.0/statuses/S0030.json +36 -0
  872. data/schemas/tlc/1.2.0/statuses/S0031.json +36 -0
  873. data/schemas/tlc/1.2.0/statuses/S0032.json +73 -0
  874. data/schemas/tlc/1.2.0/statuses/S0033.json +77 -0
  875. data/schemas/tlc/1.2.0/statuses/S0034.json +36 -0
  876. data/schemas/tlc/1.2.0/statuses/S0035.json +49 -0
  877. data/schemas/tlc/1.2.0/statuses/S0091.json +40 -0
  878. data/schemas/tlc/1.2.0/statuses/S0092.json +40 -0
  879. data/schemas/tlc/1.2.0/statuses/S0095.json +36 -0
  880. data/schemas/tlc/1.2.0/statuses/S0096.json +126 -0
  881. data/schemas/tlc/1.2.0/statuses/S0097.json +54 -0
  882. data/schemas/tlc/1.2.0/statuses/S0098.json +72 -0
  883. data/schemas/tlc/1.2.0/statuses/S0201.json +54 -0
  884. data/schemas/tlc/1.2.0/statuses/S0202.json +54 -0
  885. data/schemas/tlc/1.2.0/statuses/S0203.json +54 -0
  886. data/schemas/tlc/1.2.0/statuses/S0204.json +198 -0
  887. data/schemas/tlc/1.2.0/statuses/S0205.json +54 -0
  888. data/schemas/tlc/1.2.0/statuses/S0206.json +54 -0
  889. data/schemas/tlc/1.2.0/statuses/S0207.json +54 -0
  890. data/schemas/tlc/1.2.0/statuses/S0208.json +198 -0
  891. data/schemas/tlc/1.2.0/statuses/statuses.json +787 -0
  892. data/schemas/tlc/1.2.0/sxl.yaml +2082 -0
  893. data/schemas/tlc/1.2.1/alarms/A0001.json +4 -0
  894. data/schemas/tlc/1.2.1/alarms/A0002.json +4 -0
  895. data/schemas/tlc/1.2.1/alarms/A0003.json +4 -0
  896. data/schemas/tlc/1.2.1/alarms/A0004.json +4 -0
  897. data/schemas/tlc/1.2.1/alarms/A0005.json +4 -0
  898. data/schemas/tlc/1.2.1/alarms/A0006.json +4 -0
  899. data/schemas/tlc/1.2.1/alarms/A0007.json +34 -0
  900. data/schemas/tlc/1.2.1/alarms/A0008.json +30 -0
  901. data/schemas/tlc/1.2.1/alarms/A0009.json +4 -0
  902. data/schemas/tlc/1.2.1/alarms/A0010.json +4 -0
  903. data/schemas/tlc/1.2.1/alarms/A0101.json +4 -0
  904. data/schemas/tlc/1.2.1/alarms/A0201.json +35 -0
  905. data/schemas/tlc/1.2.1/alarms/A0202.json +35 -0
  906. data/schemas/tlc/1.2.1/alarms/A0301.json +92 -0
  907. data/schemas/tlc/1.2.1/alarms/A0302.json +115 -0
  908. data/schemas/tlc/1.2.1/alarms/A0303.json +92 -0
  909. data/schemas/tlc/1.2.1/alarms/A0304.json +115 -0
  910. data/schemas/tlc/1.2.1/alarms/alarms.json +287 -0
  911. data/schemas/tlc/1.2.1/commands/M0001.json +92 -0
  912. data/schemas/tlc/1.2.1/commands/M0002.json +69 -0
  913. data/schemas/tlc/1.2.1/commands/M0003.json +69 -0
  914. data/schemas/tlc/1.2.1/commands/M0004.json +51 -0
  915. data/schemas/tlc/1.2.1/commands/M0005.json +69 -0
  916. data/schemas/tlc/1.2.1/commands/M0006.json +69 -0
  917. data/schemas/tlc/1.2.1/commands/M0007.json +51 -0
  918. data/schemas/tlc/1.2.1/commands/M0008.json +69 -0
  919. data/schemas/tlc/1.2.1/commands/M0010.json +51 -0
  920. data/schemas/tlc/1.2.1/commands/M0011.json +51 -0
  921. data/schemas/tlc/1.2.1/commands/M0012.json +51 -0
  922. data/schemas/tlc/1.2.1/commands/M0013.json +51 -0
  923. data/schemas/tlc/1.2.1/commands/M0014.json +69 -0
  924. data/schemas/tlc/1.2.1/commands/M0015.json +69 -0
  925. data/schemas/tlc/1.2.1/commands/M0016.json +51 -0
  926. data/schemas/tlc/1.2.1/commands/M0017.json +51 -0
  927. data/schemas/tlc/1.2.1/commands/M0018.json +69 -0
  928. data/schemas/tlc/1.2.1/commands/M0019.json +87 -0
  929. data/schemas/tlc/1.2.1/commands/M0020.json +87 -0
  930. data/schemas/tlc/1.2.1/commands/M0021.json +51 -0
  931. data/schemas/tlc/1.2.1/commands/M0022.json +249 -0
  932. data/schemas/tlc/1.2.1/commands/M0023.json +51 -0
  933. data/schemas/tlc/1.2.1/commands/M0103.json +72 -0
  934. data/schemas/tlc/1.2.1/commands/M0104.json +141 -0
  935. data/schemas/tlc/1.2.1/commands/command_requests.json +8 -0
  936. data/schemas/tlc/1.2.1/commands/command_responses.json +8 -0
  937. data/schemas/tlc/1.2.1/commands/commands.json +399 -0
  938. data/schemas/tlc/1.2.1/defs/definitions.json +67 -0
  939. data/schemas/tlc/1.2.1/defs/guards.json +24 -0
  940. data/schemas/tlc/1.2.1/rsmp.json +74 -0
  941. data/schemas/tlc/1.2.1/statuses/S0001.json +91 -0
  942. data/schemas/tlc/1.2.1/statuses/S0002.json +36 -0
  943. data/schemas/tlc/1.2.1/statuses/S0003.json +36 -0
  944. data/schemas/tlc/1.2.1/statuses/S0004.json +36 -0
  945. data/schemas/tlc/1.2.1/statuses/S0005.json +72 -0
  946. data/schemas/tlc/1.2.1/statuses/S0006.json +54 -0
  947. data/schemas/tlc/1.2.1/statuses/S0007.json +73 -0
  948. data/schemas/tlc/1.2.1/statuses/S0008.json +73 -0
  949. data/schemas/tlc/1.2.1/statuses/S0009.json +73 -0
  950. data/schemas/tlc/1.2.1/statuses/S0010.json +73 -0
  951. data/schemas/tlc/1.2.1/statuses/S0011.json +73 -0
  952. data/schemas/tlc/1.2.1/statuses/S0012.json +73 -0
  953. data/schemas/tlc/1.2.1/statuses/S0013.json +54 -0
  954. data/schemas/tlc/1.2.1/statuses/S0014.json +62 -0
  955. data/schemas/tlc/1.2.1/statuses/S0015.json +62 -0
  956. data/schemas/tlc/1.2.1/statuses/S0016.json +36 -0
  957. data/schemas/tlc/1.2.1/statuses/S0017.json +36 -0
  958. data/schemas/tlc/1.2.1/statuses/S0018.json +61 -0
  959. data/schemas/tlc/1.2.1/statuses/S0019.json +36 -0
  960. data/schemas/tlc/1.2.1/statuses/S0020.json +54 -0
  961. data/schemas/tlc/1.2.1/statuses/S0021.json +37 -0
  962. data/schemas/tlc/1.2.1/statuses/S0022.json +36 -0
  963. data/schemas/tlc/1.2.1/statuses/S0023.json +37 -0
  964. data/schemas/tlc/1.2.1/statuses/S0024.json +37 -0
  965. data/schemas/tlc/1.2.1/statuses/S0025.json +162 -0
  966. data/schemas/tlc/1.2.1/statuses/S0026.json +36 -0
  967. data/schemas/tlc/1.2.1/statuses/S0027.json +36 -0
  968. data/schemas/tlc/1.2.1/statuses/S0028.json +36 -0
  969. data/schemas/tlc/1.2.1/statuses/S0029.json +36 -0
  970. data/schemas/tlc/1.2.1/statuses/S0030.json +36 -0
  971. data/schemas/tlc/1.2.1/statuses/S0031.json +36 -0
  972. data/schemas/tlc/1.2.1/statuses/S0032.json +73 -0
  973. data/schemas/tlc/1.2.1/statuses/S0033.json +77 -0
  974. data/schemas/tlc/1.2.1/statuses/S0034.json +36 -0
  975. data/schemas/tlc/1.2.1/statuses/S0035.json +49 -0
  976. data/schemas/tlc/1.2.1/statuses/S0091.json +40 -0
  977. data/schemas/tlc/1.2.1/statuses/S0092.json +40 -0
  978. data/schemas/tlc/1.2.1/statuses/S0095.json +36 -0
  979. data/schemas/tlc/1.2.1/statuses/S0096.json +126 -0
  980. data/schemas/tlc/1.2.1/statuses/S0097.json +54 -0
  981. data/schemas/tlc/1.2.1/statuses/S0098.json +72 -0
  982. data/schemas/tlc/1.2.1/statuses/S0201.json +54 -0
  983. data/schemas/tlc/1.2.1/statuses/S0202.json +54 -0
  984. data/schemas/tlc/1.2.1/statuses/S0203.json +54 -0
  985. data/schemas/tlc/1.2.1/statuses/S0204.json +198 -0
  986. data/schemas/tlc/1.2.1/statuses/S0205.json +54 -0
  987. data/schemas/tlc/1.2.1/statuses/S0206.json +54 -0
  988. data/schemas/tlc/1.2.1/statuses/S0207.json +54 -0
  989. data/schemas/tlc/1.2.1/statuses/S0208.json +198 -0
  990. data/schemas/tlc/1.2.1/statuses/statuses.json +787 -0
  991. data/schemas/tlc/1.2.1/sxl.yaml +2109 -0
  992. data/schemas/tlc/defs/guards.json +24 -0
  993. metadata +1000 -4
@@ -0,0 +1,2106 @@
1
+ ---
2
+ meta:
3
+ name: tlc
4
+ description: Traffic Light Controllers
5
+ version: 1.1.0
6
+ objects:
7
+ Traffic Light Controller:
8
+ description:
9
+ aggregated_status:
10
+ 1:
11
+ title: Local mode
12
+ description: Traffic Light Controller is in local mode. NTS has no control.
13
+ 2:
14
+ title: No Communications
15
+ 3:
16
+ title: High Priority Fault
17
+ description: Traffic Light Controller is in fail safe mode; e.g. yellow flash
18
+ or dark mode
19
+ 4:
20
+ title: Medium Priority Fault
21
+ description: |-
22
+ Traffic Light Controller has a medium priority fault, but not in fail safe mode.
23
+ E.g. several lamp faults or detector fault
24
+ 5:
25
+ title: Low Priority Fault
26
+ description: Traffic Light Controller has a low priority fault. E.g. Detector
27
+ fault
28
+ 6:
29
+ title: Connected / Normal - In Use
30
+ 7:
31
+ title: Connected / Normal - Idle
32
+ description: |-
33
+ Traffic Light Controller dark according to configuration.
34
+ NOTE! When dark according to configuration the controller is considered to be in use
35
+ 8:
36
+ title: Not Connected
37
+ functional_position: null
38
+ functional_state: null
39
+ alarms:
40
+ A0001:
41
+ description: |-
42
+ Serious hardware error.
43
+ Is a "major fault" defined according to 3.8 i EN12675 which causes the controller to switch to a "failure mode" according to 3.6 in EN12675.
44
+ priority: 2
45
+ category: D
46
+ A0002:
47
+ description: |-
48
+ Less serious hardware error.
49
+ Is a "minor fault" defined according to 3.11 in EN12675.
50
+ priority: 3
51
+ category: D
52
+ A0003:
53
+ description: |-
54
+ Serious configuration error.
55
+ Is a "major fault" defined according to 3.8 in EN12675 which causes the controller to switch to a "failure mode" according to 3.6 in EN12675.
56
+ priority: 2
57
+ category: D
58
+ A0004:
59
+ description: |-
60
+ Less serious configuration error.
61
+ Is a "minor fault" defined according to 3.11 in EN12675.
62
+ priority: 3
63
+ category: D
64
+ A0005:
65
+ description: |-
66
+ Synchronisation error (coordination).
67
+ Is a "minor fault" defined according to 3.11 in EN12675.
68
+ priority: 3
69
+ category: D
70
+ A0006:
71
+ description: |-
72
+ Safety error
73
+ Is a "major fault" defined according to 3.8 in EN12675 which causes the controller to switch to a "failure mode" according to 3.6 in EN12675.
74
+ priority: 2
75
+ category: D
76
+ A0007:
77
+ description: |-
78
+ Communication error.
79
+ Used for communication errors with the central system. Includes NTP connection loss if the TLC is configured to use NTP.
80
+ Is a "minor fault" defined according to 3.11 in EN12675.
81
+ priority: 3
82
+ category: D
83
+ arguments:
84
+ protocol:
85
+ type: string
86
+ description: Type of communication error, e.g. NTP or RSMP
87
+ values:
88
+ rsmp: RSMP
89
+ ntp: NTP
90
+ A0009:
91
+ description: |-
92
+ Other error.
93
+ Used for other errors not covered by any other alarm type.
94
+ Is a "minor fault" defined according to 3.11 in EN12675.
95
+ priority: 3
96
+ category: D
97
+ A0010:
98
+ description: |-
99
+ Door open.
100
+ Used for open door (room or cabinet).
101
+ priority: 3
102
+ category: D
103
+ statuses:
104
+ S0001:
105
+ description: |-
106
+ Signal group status.
107
+ Provides the status of each signal group, including basic information such as green, yellow and red. But also detailed technical information.
108
+ Can be used to draw a live signal group diagram as well provide diagnostic information about the performance of the controller.
109
+ arguments:
110
+ signalgroupstatus:
111
+ type: string
112
+ description: |-
113
+ Signal group status as text field.
114
+ Each character represent the state of the signal group in consecutive order.
115
+ Signal group status is described in detail in the corresponding section.
116
+ - = Signal group is undefined/does not exist
117
+ pattern: "^[a-hA-G0-9N-P]*$"
118
+ cyclecounter:
119
+ type: integer
120
+ description: |-
121
+ Cycle counter.
122
+ Used for handling of coordination between TLC's.
123
+ Is counted from 0 until it reaches the cycle time (See S0028).
124
+
125
+ c = (b + o) mod t
126
+
127
+ where c = cycle counter,
128
+ b = base cycle counter,
129
+ o = offset,
130
+ t = cycle time,
131
+ mod = modulo
132
+
133
+ See the coordination section for more information.
134
+ min: 0
135
+ max: 999
136
+ basecyclecounter:
137
+ type: integer
138
+ description: |-
139
+ Base cycle counter.
140
+ Used for handling of coordination between TLC's.
141
+ Synchronized between all TLC's in an active coordination.
142
+ See the coordination section for more information.
143
+ min: 0
144
+ max: 999
145
+ stage:
146
+ type: integer
147
+ description: Current stage (isolated)
148
+ min: 0
149
+ max: 999
150
+ S0002:
151
+ description: |-
152
+ Detector logic status.
153
+ Provides the status of all detector logics of the controller.
154
+ Can be used to draw a live signal group diagram as well provide diagnostic information about the performance of the controller. Can also be used for bus priority, external control systems, and much more.
155
+ arguments:
156
+ detectorlogicstatus:
157
+ type: string
158
+ description: |-
159
+ Detector logic status as text field
160
+ Each character represent the state of the detector logic in consecutive order.
161
+ 0 : Detector logic is not active
162
+ 1 : Detector logic is active
163
+ - : Detector logic is undefined/does not exist
164
+ S0003:
165
+ description: |-
166
+ Input status.
167
+ Input (1-255) of the controllers general purpose I/O.
168
+ Input is used where the traffic light controller must react to external control. It could be external detectors, bus priority, and much more.
169
+ arguments:
170
+ inputstatus:
171
+ type: string
172
+ description: |-
173
+ Input status as text field
174
+ Each character represent the state of the input in consecutive order.
175
+ 0 : Input is not active
176
+ 1 : Input is active
177
+ - : Input is undefined/does not exist
178
+ extendedinputstatus:
179
+ type: string
180
+ deprecated: true
181
+ description: |-
182
+ Extended input status as text field
183
+ Each character represent the state of the extended input status in consecutive order.
184
+ 0 : Input is not active
185
+ 1 : Input is active
186
+ - : Input is undefined/does not exist
187
+ S0004:
188
+ description: |-
189
+ Output status.
190
+ Output (1-255) of the controllers general purpose I/O.
191
+ Can be used for all types of output where the traffic light controller needs to control other equipment. Can be used for bus priority, coordination between traffic controllers, external control systems, and much more.
192
+ arguments:
193
+ outputstatus:
194
+ type: string
195
+ description: |-
196
+ Output status as text field
197
+ Each character represent the state of the output status in consecutive order.
198
+ 0 : Output is not active
199
+ 1 : Output is active
200
+ - : Output is undefined/does not exist
201
+ extendedoutputstatus:
202
+ type: string
203
+ deprecated: true
204
+ description: |-
205
+ Extended output status as text field
206
+ Each character represent the state of the extended output status in consecutive order.
207
+ 0 : Output is not active
208
+ 1 : Output is active
209
+ - : Output is undefined/does not exist
210
+ S0005:
211
+ description: |-
212
+ Traffic Light Controller starting.
213
+ The traffic signal is starting, e.g. it is in startup mode and has not begun working normally yet.
214
+ During startup mode the traffic controller shows dark, red, yellow flash or using the predetermined start cycle (minimum times).
215
+ arguments:
216
+ status:
217
+ type: boolean
218
+ description: |-
219
+ False: Controller is not in start up mode
220
+ True: Controller is currently in start up mode
221
+ S0006:
222
+ description: |-
223
+ Emergency route.
224
+ The status is active during emergency prioritization.
225
+ Used in situations where full priority is given in the emergency vehicle program.
226
+ If no emergency route is active, status should be set to False, and emergencystage to zero.
227
+ arguments:
228
+ status:
229
+ type: boolean
230
+ description: |-
231
+ False: Emergency stage inactive
232
+ True: Emergency stage active
233
+ emergencystage:
234
+ type: integer
235
+ description: Number of emergency stage (set to zero if no route is active)
236
+ min: 0
237
+ max: 255
238
+ S0007:
239
+ description: |-
240
+ Controller switched on.
241
+ The controller is active and is not in dark mode.
242
+ Used to determine if the controller is operating, e.g. it shows red, green or yellow to the vehicles.
243
+ During maintenance work the controller might be using dark mode (no output to the signal heads).
244
+ Please note that all values in this status uses comma-separated lists - one value for each intersection, e.g. "0" and "True" (one intersection) or "1,2" and "True,False" (two intersections).
245
+ arguments:
246
+ intersection:
247
+ type: integer_list
248
+ description: |-
249
+ Comma separated list of intersections which the status relates to, e.g. "1,2".
250
+ Use "0" for all intersections of the TLC.
251
+ min: 0
252
+ max: 255
253
+ status:
254
+ type: boolean_list
255
+ description: |-
256
+ False: Traffic Light Controller in dark mode
257
+ True: Traffic Light Controller not in dark mode
258
+ source:
259
+ description: Source of the status change
260
+ type: string_list
261
+ values:
262
+ operator_panel: Operator panel
263
+ calendar_clock: Calendar/clock
264
+ control_block: Control block
265
+ forced: Forced due to external command e.g. supervisor
266
+ startup: Set after startup mode
267
+ other: Other reason
268
+ S0008:
269
+ description: |-
270
+ Manual control.
271
+ Traffic control deactivated in controller.
272
+ Signal timings is controlled manually by service personnel using the operating panel of the controller.
273
+ Please note that all values in this status uses comma-separated lists - one value for each intersection, e.g. "0" and "True" (one intersection) or "1,2" and "True,False" (two intersections).
274
+ arguments:
275
+ intersection:
276
+ type: integer_list
277
+ description: |-
278
+ Comma separated list of intersections which the status relates to, e.g. "1,2".
279
+ Use "0" for all intersections of the TLC.
280
+ min: 0
281
+ max: 255
282
+ status:
283
+ type: boolean_list
284
+ description: |-
285
+ False: Manual control inactive
286
+ True: Manual control active
287
+ source:
288
+ type: string_list
289
+ description: Source of the status change
290
+ values:
291
+ operator_panel: Operator panel
292
+ calendar_clock: Calendar/clock
293
+ control_block: Control block
294
+ forced: Forced due to external command e.g. supervisor
295
+ startup: Set after startup mode
296
+ other: Other reason
297
+ S0009:
298
+ description: |-
299
+ Fixed time control.
300
+ Traffic actuated control deactivated and a pre-timed control is used.
301
+ Usually only used in case normal detectors can't be used, e.g. during maintenance work.
302
+ Please note that all values in this status uses comma-separated lists - one value for each intersection, e.g. "0" and "True" (one intersection) or "1,2" and "True,False" (two intersections).
303
+ arguments:
304
+ intersection:
305
+ type: integer_list
306
+ description: |-
307
+ Comma separated list of intersections which the status relates to, e.g. "1,2".
308
+ Use "0" for all intersections of the TLC.
309
+ min: 0
310
+ max: 255
311
+ status:
312
+ type: boolean_list
313
+ description: |-
314
+ False: Fixed time control inactive
315
+ True: Fixed time control active
316
+ source:
317
+ type: string_list
318
+ description: Source of the status change
319
+ values:
320
+ operator_panel: Operator panel
321
+ calendar_clock: Calendar/clock
322
+ control_block: Control block
323
+ forced: Forced due to external command e.g. supervisor
324
+ startup: Set after startup mode
325
+ other: Other reason
326
+ S0010:
327
+ description: |-
328
+ Isolated control.
329
+ Isolated control mode indicates that the controller operates independently of any other traffic light controller. This may be different depending on traffic program (time plan).
330
+ Used to determine if the controller is operating independently or operating with other controllers (coordination).
331
+ Please note that all values in this status uses comma-separated lists - one value for each intersection, e.g. "0" and "True" (one intersection) or "1,2" and "True,False" (two intersections).
332
+ arguments:
333
+ intersection:
334
+ type: integer_list
335
+ description: |-
336
+ Comma separated list of intersections which the status relates to, e.g. "1,2".
337
+ Use "0" for all intersections of the TLC.
338
+ min: 0
339
+ max: 255
340
+ status:
341
+ type: boolean_list
342
+ description: |-
343
+ False: Isolated control disabled
344
+ True: Isolated control enabled (Vehicle actuated control or Fixed time control)
345
+ source:
346
+ type: string_list
347
+ description: Source of the status change
348
+ values:
349
+ operator_panel: Operator panel
350
+ calendar_clock: Calendar/clock
351
+ control_block: Control block
352
+ forced: Forced due to external command e.g. supervisor
353
+ startup: Set after startup mode
354
+ other: Other reason
355
+ S0011:
356
+ description: |-
357
+ Yellow flash.
358
+ The controller shows yellow flash.
359
+ Yellow flash may be used during a serious fault (depending on configuration) or maintenance work. It can also be manually set using M0001.
360
+ Some countries may use yellow flash as an normal operating mode, and not necessarily during fault.
361
+ Please note that all values in this status uses comma-separated lists - one value for each intersection, e.g. "1,2" and "True,False"
362
+ arguments:
363
+ intersection:
364
+ type: integer_list
365
+ description: |-
366
+ Comma separated list of intersections which the status relates to, e.g. "1,2".
367
+ Use "0" for all intersections of the TLC.
368
+ min: 0
369
+ max: 255
370
+ status:
371
+ type: boolean_list
372
+ description: |-
373
+ False: Yellow flash disabled
374
+ True: Yellow flash enabled
375
+ source:
376
+ type: string_list
377
+ description: Source of the status change
378
+ values:
379
+ operator_panel: Operator panel
380
+ calendar_clock: Calendar/clock
381
+ control_block: Control block
382
+ forced: Forced due to external command e.g. supervisor
383
+ startup: Set after startup mode
384
+ other: Other reason
385
+ S0012:
386
+ description: |-
387
+ All red.
388
+ The controller show all red.
389
+ All red can be manually set using the controllers operating panel during maintenance work.
390
+ Please note that all values in this status uses comma-separated lists - one value for each intersection, e.g. "1,2" and "True,False"
391
+ arguments:
392
+ intersection:
393
+ type: integer_list
394
+ description: |-
395
+ Comma separated list of intersections which the status relates to, e.g. "1,2".
396
+ Use "0" for all intersections of the TLC.
397
+ min: 0
398
+ max: 255
399
+ status:
400
+ type: boolean_list
401
+ description: |-
402
+ False: All red disabled
403
+ True: All red enabled
404
+ source:
405
+ type: string_list
406
+ description: Source of the status change
407
+ values:
408
+ operator_panel: Operator panel
409
+ calendar_clock: Calendar/clock
410
+ control_block: Control block
411
+ forced: Forced due to external command e.g. supervisor
412
+ startup: Set after startup mode
413
+ other: Other reason
414
+ S0013:
415
+ description: |-
416
+ Police key
417
+ The controller is forced to dark mode or yellow flash.
418
+ The "police key" is a external control switch present in some controllers that manually switches the controller to either dark mode or yellow flash.
419
+ Please note that all values in this status uses comma-separated lists - one value for each intersection, e.g. "1,2" and "0,1"
420
+ arguments:
421
+ intersection:
422
+ type: integer_list
423
+ description: |-
424
+ Comma separated list of intersections which the status relates to, e.g. "1,2".
425
+ Use "0" for all intersections of the TLC.
426
+ min: 0
427
+ max: 255
428
+ status:
429
+ type: integer_list
430
+ values:
431
+ 0: disabled
432
+ 1: dark mode
433
+ 2: yellow flash
434
+ 3: all red
435
+ S0014:
436
+ description: |-
437
+ Current time plan.
438
+ The current time plan (signal program) used in the controller. There may be 1-255 predefined time plans.
439
+ 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.
440
+ arguments:
441
+ status:
442
+ type: integer
443
+ description: Current time plan
444
+ min: 1
445
+ max: 255
446
+ source:
447
+ type: string
448
+ description: Source of the status change
449
+ values:
450
+ operator_panel: Operator panel
451
+ calendar_clock: Calendar/clock
452
+ control_block: Control block
453
+ forced: Forced due to external command e.g. supervisor
454
+ startup: Set after startup mode
455
+ other: Other reason
456
+ S0015:
457
+ description: |-
458
+ Current traffic situation.
459
+ The current traffic situation used in the controller.
460
+ Used for area-based control where a command can be sent to a master traffic light controller about which predefined traffic situation to use (1-255).
461
+ 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.
462
+ arguments:
463
+ status:
464
+ type: integer
465
+ description: Current traffic situation
466
+ min: 1
467
+ max: 255
468
+ source:
469
+ type: string
470
+ description: Source of the status change
471
+ values:
472
+ operator_panel: Operator panel
473
+ calendar_clock: Calendar/clock
474
+ control_block: Control block
475
+ forced: Forced due to external command e.g. supervisor
476
+ startup: Set after startup mode
477
+ other: Other reason
478
+ S0016:
479
+ description: |-
480
+ Number of detector logics.
481
+ Can be used by the management system to check the number of detector logics configured in the controller.
482
+ arguments:
483
+ number:
484
+ type: integer
485
+ description: Number of detector logics
486
+ min: 1
487
+ max: 65025
488
+ S0017:
489
+ description: |-
490
+ Number of signal groups.
491
+ Can be used for the management system to check the number of signal groups configured in the controller.
492
+ arguments:
493
+ number:
494
+ type: integer
495
+ description: Number of signal groups
496
+ min: 1
497
+ max: 65025
498
+ S0018:
499
+ description: |-
500
+ Number of time plans
501
+ Can be used for the management system to check the number of time plans configured in the controller.
502
+ arguments:
503
+ number:
504
+ type: integer
505
+ description: Number of time plans (depreciated)
506
+ min: 1
507
+ max: 65025
508
+ S0019:
509
+ description: |-
510
+ Number of traffic situations.
511
+ Can be used for the management system to check the number of traffic situations configured in the controller.
512
+ arguments:
513
+ number:
514
+ type: integer
515
+ description: Number of traffic situations
516
+ min: 1
517
+ max: 65025
518
+ S0020:
519
+ description: |-
520
+ Control mode.
521
+ Can be used for the management system to check the current control mode (startup, normal, standby, failure, test).
522
+ Please note that all values in this status uses comma-separated lists - one value for each intersection, e.g. "1,2" and "startup,control"
523
+ arguments:
524
+ intersection:
525
+ type: integer_list
526
+ description: |-
527
+ Comma separated list of intersections which the status relates to, e.g. "1,2".
528
+ Use "0" for all intersections of the TLC.
529
+ min: 0
530
+ max: 255
531
+ controlmode:
532
+ type: string_list
533
+ values:
534
+ startup: Startup mode
535
+ control: Normal control
536
+ standby: Standby mode
537
+ failure: Failure mode
538
+ test: Test mode
539
+ S0021:
540
+ description: |-
541
+ Manually set detector logic.
542
+ Provides status of detector logic (1-255) regarding if they are either forced to true or false.
543
+ Can be used to connect RSMP compatible detection equipment to the traffic light controller. Can also be used for prioritization.
544
+ arguments:
545
+ detectorlogics:
546
+ type: string
547
+ description: Manually set detector logics (1/0) as text field
548
+ pattern: "^[01]*$"
549
+ S0022:
550
+ description: |-
551
+ List of time plans.
552
+ Provides a list of the configured time plans which is possible to use. This status was added due to status S0018 only provides the total number of time plans and not which were possible to use with M0002.
553
+ Can be used for the management system to check the number of time plans configured in the controller.
554
+ arguments:
555
+ status:
556
+ type: string
557
+ description: Comma separated list of configured time plans. E.g. "1,2,3,5"
558
+ S0023:
559
+ description: |-
560
+ Dynamic bands.
561
+ Provides a list of all defined dynamic bands. Dynamic bands moves start of signal groups in the cycle and changes the signal timings.
562
+ A typical usage of dynamic bands is scenario based control where changing of signal timings is used for optimal traffic flow.
563
+ arguments:
564
+ status:
565
+ type: string
566
+ description: |-
567
+ Dynamic bands.
568
+ Each dynamic band are written as pp-dd-ee where:
569
+ pp=Time plan
570
+ dd=Dynamic band number (from 1-10)
571
+ ee=Extension in seconds in this band
572
+
573
+ Each dynamic band is separated with a comma.
574
+
575
+ E.g.
576
+ pp-dd-ee,pp-dd-ee
577
+ pattern: "(^$)|(^(?<item>(\\d{1,2})\\-\\d{1,2}-\\d{1,2})(,\\g<item>)*$)"
578
+ S0024:
579
+ description: |-
580
+ Offset time.
581
+ Offset time is used to define an offset between intersections in coordinated control. It is based on the expected travel time between intersections.
582
+ Can be used by the management system to check to fine tune the coordination for optimal traffic flow.
583
+ arguments:
584
+ status:
585
+ type: string
586
+ description: |-
587
+ Offset table
588
+ Each offset time is written as p-t where:
589
+ p=time plan number (from 1 to 255)
590
+ t=offset time in seconds (from 0 to 255)
591
+
592
+ Each offset time is separated with a comma
593
+
594
+ E.g.
595
+ 1-0,2-13-3-7
596
+ pattern: "^(\\d{1,3}\\-\\d{1,3})(?:,(\\d{1,3}\\-\\d{1,3}))*$"
597
+ S0026:
598
+ description: |-
599
+ Week time table.
600
+ Week time table for signal programs (time plan) to use for each day during a week.
601
+ The week time table determine which predefined signal timings (time plan) to use during the week for optimal traffic flow.
602
+ arguments:
603
+ status:
604
+ type: string
605
+ description: |-
606
+ Week time table. Defines time table to use for each week day
607
+ Each day is written as d-t where:
608
+ d=day of week
609
+ t=time table nr
610
+
611
+ Day of week legend:
612
+ 0=Monday
613
+ 1=Tuesday
614
+ 2=Wednesday
615
+ 3=Thursday
616
+ 4=Friday
617
+ 5=Saturday
618
+ 6=Sunday
619
+
620
+ Each segment is separated with a comma
621
+ E.g.
622
+ d-t,d-t
623
+ S0027:
624
+ description: |-
625
+ Time tables.
626
+ Time of day for when to switch signal program (time plan).
627
+ The signal timings (time plan) to use during time of day for optimal traffic flow.
628
+ arguments:
629
+ status:
630
+ type: string
631
+ description: |-
632
+ Time Table. Defines time tables.
633
+ Each time definition is written as t-o-h-m where:
634
+ t=time table nr (1-12)
635
+ o=function
636
+ h=hour - switching time
637
+ m=minute - switching minute
638
+
639
+ Function legend:
640
+ 0=no plan is selected by time table
641
+ 1=set plan 1
642
+ ...
643
+ 16= set plan 16
644
+
645
+ hour and minute is using local time (not UTC)
646
+
647
+ Each time definition is separated with a comma
648
+
649
+ E.g.
650
+ t-o-h-m,t-o-h-m
651
+ S0028:
652
+ description: |-
653
+ Cycle time.
654
+ Cycle time (or cycle length) is the sum of all phases in a time plan (traffic program). This time is fixed when using fixed time control or coordination (except "local coordination"). When the cycle counter reaches this length it is reset back to zero.
655
+ Changing the cycle time can be used as part of scenario based control.
656
+ arguments:
657
+ status:
658
+ type: string
659
+ description: |-
660
+ Cycle time table
661
+ Each cycle time is written as pp-tt where:
662
+ pp=time plan
663
+ tt=cycle time in seconds
664
+
665
+ Each cycle time is separated with a comma
666
+
667
+ E.g.
668
+ pp-tt,pp-tt
669
+ S0029:
670
+ description: |-
671
+ Forced input status.
672
+ Provide status of input (1-255) regarding if they are forced or not. Can be used for all types of input where the traffic light controller must react to external control.
673
+ Can be used for bus priority, coordination between traffic controllers, external control systems, and much more.
674
+ arguments:
675
+ status:
676
+ type: string
677
+ description: Forced input status as text field
678
+ S0030:
679
+ description: |-
680
+ Forced output status.
681
+ Provide status of output (1-255) regarding if they are forced or not. Can be used for all types of output where the traffic light controller needs to control other equipment.
682
+ Can be used for bus priority, coordination between traffic controllers, external control systems, and much more.
683
+ arguments:
684
+ status:
685
+ type: string
686
+ description: Forced output status as text field
687
+ S0031:
688
+ description: |-
689
+ Trigger level sensitivity for loop detector.
690
+ The trigger level sensitivity determines at what level the loop detector should trigger. If it set too low then then traffic will not be detected as intended. If it is set too high the detector might give false positives.
691
+ Can be used to make sure that the detectors detect traffic as intended.
692
+ arguments:
693
+ status:
694
+ type: string
695
+ description: |-
696
+ Loop detector trigger level sensitivity is written as dd-ss where:
697
+ dd=loop detector number
698
+ ss=sensitivity value
699
+ Each loop detector is separated with a comma. E.g.dd-ss,dd-ss.
700
+ S0032:
701
+ description: |-
702
+ Coordinated control
703
+ This status is used when coordination between traffic light controllers is active. Coordination is described in detail in the corresponding section
704
+ Please note that all values in this status uses comma-separated lists - one value for each intersection, e.g. "1,2" and "centralized,off"
705
+ arguments:
706
+ intersection:
707
+ type: integer_list
708
+ description: |-
709
+ Comma separated list of intersections which the status relates to, e.g. "1,2".
710
+ Use "0" for all intersections of the TLC.
711
+ min: 0
712
+ max: 255
713
+ status:
714
+ type: string_list
715
+ values:
716
+ local: Local coordination
717
+ centralized: Coordination with synchronized clock
718
+ 'off': Coordination not active
719
+ source:
720
+ description: Source of the status change
721
+ type: string_list
722
+ values:
723
+ operator_panel: Operator panel
724
+ calendar_clock: Calendar/clock
725
+ control_block: Control block
726
+ forced: Forced due to external command e.g. supervisor
727
+ startup: Set after startup mode
728
+ other: Other reason
729
+ S0033:
730
+ description: |-
731
+ Signal Priority Status
732
+ This status can be used to get updates about priority requests. For example, you can use it to know when priority requests are activated or cancelled.
733
+ A list of priorities is returned, referred to by their request ids. The same request id can appear only once.
734
+ All priorities are included in the list (not only the ones that have changed state since the last update). This is done regardless of whether the status is send in respond to a status request, or due to a status subscription, and also regardless of whether a status subscription uses an update interval, or send-on-change, or both.
735
+ If you subscribe using an update interval, you're not guaranteed to get all intermediate states. To guarantee that, send-on-change must be used when subscribing.
736
+ To understand how this status relates to ETSI/J2735, please see the [wiki](https://github.com/rsmp-nordic/rsmp_sxl_traffic_lights/wiki/Signal-priority-and-ETSI-J2735).
737
+ All priorities are send on every status update, regardless of whether an interval, or sendOnChange (or both) is used.
738
+ When a priority reaches an end states (completed, timeout, rejected, cooldown or stale), it must be sent once on the next status update, then removed from the list.
739
+ A request always starts in the 'received' state. The following table shows the possible state transitions:
740
+
741
+ State | Possible next states
742
+ ---------- | -------------------------------------
743
+ received | queued, activated, rejected, cooldown
744
+ queued | activated, timeout
745
+ activated | completed, stale
746
+ completed |
747
+ timeout |
748
+ rejected |
749
+ cooldown |
750
+ stale |
751
+ arguments:
752
+ status:
753
+ description: JSON array of priority status items
754
+ type: array
755
+ items:
756
+ r:
757
+ type: string
758
+ description: ID of the priority request
759
+ t:
760
+ type: timestamp
761
+ description: |-
762
+ Timestamp, indicating when the priority last changed state.
763
+ Format according to W3C XML dateTime with a resolution of 3 decimal places.
764
+ All time stamps in UTC. E.g. 2009-10-02T14:34:34.341Z
765
+ s:
766
+ type: string
767
+ description: |-
768
+ Current status of the priority request
769
+ values:
770
+ received: A new priority request was received but has not yet been processed
771
+ queued: The priority request has been queued for later activation
772
+ activated: The priority was activated
773
+ completed: The priority was cancelled as expected
774
+ timeout: The priority has been queued for too long
775
+ rejected: The priority request cannot be granted
776
+ cooldown: A similar priority request means the priority request cannot be activated now
777
+ stale: The priority has been active too long without cancellation, and was therefore removed
778
+ e:
779
+ type: integer
780
+ description: |-
781
+ Estimated green extension provided by the priority, in seconds
782
+ Only used when state is 'completed'.
783
+ optional: true
784
+ min: 0
785
+ max: 255
786
+ d:
787
+ type: integer
788
+ description: |-
789
+ Estimated red reduction provided by the priority, in seconds
790
+ Only used when state is 'completed'.
791
+ optional: true
792
+ min: 0
793
+ max: 255
794
+ S0034:
795
+ description: |-
796
+ Timeout for dynamic bands.
797
+ Time until a designated time plan is entered due to lost connection with the supervisor.
798
+ Disabled if set to '0'.
799
+ Used in conjunction with dynamic bands, M0014
800
+ arguments:
801
+ status:
802
+ type: integer
803
+ description: Timeout, in minutes
804
+ min: 0
805
+ max: 65535
806
+ S0091:
807
+ description: |-
808
+ Operator logged in/out OP-panel.
809
+ Provides information if maintenance personnel is currently working on site.
810
+ arguments:
811
+ user:
812
+ type: integer
813
+ values:
814
+ 0: Nobody logged in
815
+ 1: Operator logged in at level 1 (read only)
816
+ 2: Operator logged in at level 2 (read/write)
817
+ S0092:
818
+ description: |-
819
+ Operator logged in/out web-interface.
820
+ Provides information if maintenance personnel is currently working with the controller.
821
+ arguments:
822
+ user:
823
+ type: integer
824
+ values:
825
+ 0: Nobody logged in
826
+ 1: Operator logged in at level 1 (read only)
827
+ 2: Operator logged in at level 2 (read/write)
828
+ S0095:
829
+ description: |-
830
+ Version of Traffic Light Controller.
831
+ Provides diagnostic version information.
832
+ arguments:
833
+ status:
834
+ type: string
835
+ description: Manufacturer, product name and version of traffic light controller
836
+ S0096:
837
+ description: |-
838
+ Current date and time.
839
+ Note: UTC is used.
840
+ Provides diagnostic information about the current date and time set in the controller.
841
+ arguments:
842
+ year:
843
+ type: integer
844
+ description: Year
845
+ min: 0
846
+ max: 9999
847
+ month:
848
+ type: integer
849
+ description: Month
850
+ min: 1
851
+ max: 12
852
+ day:
853
+ type: integer
854
+ description: Day of month
855
+ min: 1
856
+ max: 31
857
+ hour:
858
+ type: integer
859
+ description: Hour
860
+ min: 0
861
+ max: 23
862
+ minute:
863
+ type: integer
864
+ description: Minute
865
+ min: 0
866
+ max: 59
867
+ second:
868
+ type: integer
869
+ description: Second
870
+ min: 0
871
+ max: 59
872
+ S0097:
873
+ description: |-
874
+ Checksum of traffic parameters.
875
+ Can be used to check if any traffic parameter has been changed.
876
+ For instance, depending on controller, maintenance personnel can modify traffic parameters on site to optimize traffic flow. This status provides the ability to monitor if any traffic parameter has been changed. The traffic parameters may be downloaded with S0098.
877
+ arguments:
878
+ checksum:
879
+ type: string
880
+ description: |-
881
+ Checksum of the traffic parameters
882
+ Uses SHA-2 as hashing algorithm
883
+ Includes
884
+ - all signal programs, including program versions
885
+ - signal group settings
886
+ - time plans
887
+ - safety matrix
888
+ - intergreen times
889
+ - detector settings
890
+
891
+ It should NOT include:
892
+ - network settings
893
+ - log files
894
+ - software
895
+ - other device settings that are not part of the signal program
896
+
897
+ Note:
898
+ - The checksum should be calculated using the same data as used in S0098
899
+ - Data Downloaded with S0098 and hashed with SHA-2 should match this value.
900
+ timestamp:
901
+ type: timestamp
902
+ description: Time stamp of the checksum. Format according to W3C XML dateTime
903
+ with a resolution of 3 decimal places. All time stamps in UTC. E.g.
904
+ 2009-10-02T14:34:34.341Z
905
+ S0098:
906
+ description: |-
907
+ Configuration of traffic parameters.
908
+ Can be used to download all traffic parameters from the controller.
909
+ For instance, depending on controller, maintenance personnel can modify traffic parameters on site to optimize traffic flow. This status provides the ability to downloaded them.
910
+ arguments:
911
+ config:
912
+ type: base64
913
+ description: |-
914
+ Traffic parameters.
915
+ Includes
916
+ - all signal programs, including program versions
917
+ - signal group settings
918
+ - time plans
919
+ - safety matrix
920
+ - intergreen times
921
+ - detector setting
922
+
923
+ It should NOT include:
924
+ - network settings
925
+ - log files
926
+ - software
927
+ - other device settings that are not part of the signal program
928
+
929
+ Note:
930
+ - There is no way to upload this binary file to the TLC using RSMP
931
+ - The format of the binary file is not specified and is not expected to be compatible between suppliers
932
+ timestamp:
933
+ type: timestamp
934
+ description: |-
935
+ Time stamp of the config. 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
936
+ version:
937
+ type: string
938
+ description: |-
939
+ Version information of the configuration. Contains basic information such as controller id, changes to config and other information.
940
+ The format is not specified in detail.
941
+ S0205:
942
+ description: |-
943
+ Traffic Counting: Number of vehicles.
944
+ This status was introduced to improve performance in case traffic counting is done on all all detectors.
945
+ arguments:
946
+ start:
947
+ type: timestamp
948
+ description: |-
949
+ Time stamp for start of measuring. 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
950
+ vehicles:
951
+ type: integer_list
952
+ description: |-
953
+ Number of vehicles.
954
+ - Value expressed as an integer with a range of 0-65535.
955
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
956
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
957
+ min: -1
958
+ max: 65535
959
+ S0206:
960
+ description: |-
961
+ Traffic Counting: Vehicle speed
962
+ This status was introduced to improve performance in case traffic counting is done on all all detectors.
963
+ arguments:
964
+ start:
965
+ type: timestamp
966
+ description: |-
967
+ Time stamp for start of measuring. Format according to W3C
968
+ XML dateTime with a resolution of 3 decimal places. All time stamps
969
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
970
+ speed:
971
+ type: integer_list
972
+ description: |-
973
+ Average speed in km/h (integer).
974
+ - Value expressed as an integer with a range of 0-65535.
975
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
976
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
977
+ min: -1
978
+ max: 65535
979
+ S0207:
980
+ description: |-
981
+ Traffic Counting: Occupancy.
982
+ This status was introduced to improve performance in case traffic counting is done on all all detectors.
983
+ arguments:
984
+ start:
985
+ type: timestamp
986
+ description: |-
987
+ Time stamp for start of measuring. Format according to W3C
988
+ XML dateTime with a resolution of 3 decimal places. All time stamps
989
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
990
+ occupancy:
991
+ type: integer_list
992
+ description: |-
993
+ Occupancy in percent (%) (0-100)
994
+ - Value expressed as an integer with a range of 0-100.
995
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
996
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
997
+ min: -1
998
+ max: 100
999
+ S0208:
1000
+ description: |-
1001
+ Traffic Counting: Number of vehicles of given classification.
1002
+ This status was introduced to improve performance in case traffic counting is done on all all detectors.
1003
+ arguments:
1004
+ start:
1005
+ type: timestamp
1006
+ description: |-
1007
+ Time stamp for start of measuring. Format according to W3C
1008
+ XML dateTime with a resolution of 3 decimal places. All time stamps
1009
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
1010
+ P:
1011
+ type: integer_list
1012
+ description: |-
1013
+ Number of cars.
1014
+ - Value expressed as an integer with a range of 0-65535.
1015
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
1016
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
1017
+ min: -1
1018
+ max: 65535
1019
+ PS:
1020
+ type: integer_list
1021
+ description: |-
1022
+ Number of cars with trailers.
1023
+ - Value expressed as an integer with a range of 0-65535.
1024
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
1025
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
1026
+ min: -1
1027
+ max: 65535
1028
+ L:
1029
+ type: integer_list
1030
+ description: |-
1031
+ Number of trucks.
1032
+ - Value expressed as an integer with a range of 0-65535.
1033
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
1034
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
1035
+ min: -1
1036
+ max: 65535
1037
+ LS:
1038
+ type: integer_list
1039
+ description: |-
1040
+ Number of trucks with trailers.
1041
+ - Value expressed as an integer with a range of 0-65535.
1042
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
1043
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
1044
+ min: -1
1045
+ max: 65535
1046
+ B:
1047
+ type: integer_list
1048
+ description: |-
1049
+ Number of buses.
1050
+ - Value expressed as an integer with a range of 0-65535.
1051
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
1052
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
1053
+ min: -1
1054
+ max: 65535
1055
+ SP:
1056
+ type: integer_list
1057
+ description: |-
1058
+ Number of trams.
1059
+ - Value expressed as an integer with a range of 0-65535.
1060
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
1061
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
1062
+ min: -1
1063
+ max: 65535
1064
+ MC:
1065
+ type: integer_list
1066
+ description: |-
1067
+ Number of motor cycles.
1068
+ - Value expressed as an integer with a range of 0-65535.
1069
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
1070
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
1071
+ min: -1
1072
+ max: 65535
1073
+ C:
1074
+ type: integer_list
1075
+ description: |-
1076
+ Number of bicycles.
1077
+ - Value expressed as an integer with a range of 0-65535.
1078
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
1079
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
1080
+ min: -1
1081
+ max: 65535
1082
+ F:
1083
+ type: integer_list
1084
+ description: |-
1085
+ Number of pedestrians.
1086
+ - Value expressed as an integer with a range of 0-65535.
1087
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
1088
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
1089
+ min: -1
1090
+ max: 65535
1091
+ commands:
1092
+ M0001:
1093
+ description: |-
1094
+ Sets functional position.
1095
+ Sets the controller to yellow flash, dark mode or normal control.
1096
+ Requires security code 2.
1097
+ arguments:
1098
+ status:
1099
+ type: string
1100
+ description: Set operating mode
1101
+ values:
1102
+ NormalControl: Normal Control
1103
+ YellowFlash: Enables yellow flash
1104
+ Dark: Enables dark mode
1105
+ securityCode:
1106
+ type: string
1107
+ description: Security code 2
1108
+ timeout:
1109
+ type: integer
1110
+ description: |-
1111
+ Time in minutes until controller automatically reverts to previous functional position.
1112
+ 0=no automatic return
1113
+ min: 0
1114
+ max: 1440
1115
+ intersection:
1116
+ type: integer
1117
+ description: Intersection number
1118
+ min: 0
1119
+ max: 255
1120
+ command: setValue
1121
+ M0002:
1122
+ description: |-
1123
+ Sets current time plan.
1124
+ Change of traffic program of the traffic light controller.
1125
+ Typical usages is scenario based control where change of program is used to change signal timings etc.
1126
+ This command changes the signal timings for optimal traffic flow.
1127
+ Requires security code 2
1128
+ arguments:
1129
+ status:
1130
+ type: boolean
1131
+ description: |-
1132
+ False: Controller uses time plan according to programming
1133
+ True: Controller uses time plan according to command
1134
+ securityCode:
1135
+ type: string
1136
+ description: Security code 2
1137
+ timeplan:
1138
+ type: integer
1139
+ description: designation of time plan
1140
+ min: 1
1141
+ max: 255
1142
+ command: setPlan
1143
+ M0003:
1144
+ description: |-
1145
+ Sets traffic situation the controller uses.
1146
+ Used for area-based control where a command can be sent to a master traffic light controller about which predefined traffic situation to use (1-255).
1147
+ 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.
1148
+ Requires security code 2
1149
+ arguments:
1150
+ status:
1151
+ type: boolean
1152
+ description: |-
1153
+ False: Controller uses traffic situation according to own programming
1154
+ True: Controller uses traffic situation according to command
1155
+ securityCode:
1156
+ type: string
1157
+ description: Security code 2
1158
+ traficsituation:
1159
+ type: integer
1160
+ description: designation of traficsituation
1161
+ min: 1
1162
+ max: 255
1163
+ command: setTrafficSituation
1164
+ M0004:
1165
+ description: |-
1166
+ Restarts Traffic Light Controller.
1167
+ Used in the event of serious faults in the device where a restart is considered to be able to remedy a problem.
1168
+ Requires security code 2
1169
+ arguments:
1170
+ status:
1171
+ type: boolean
1172
+ description: 'True: Restart controller'
1173
+ securityCode:
1174
+ type: string
1175
+ description: Security code 2
1176
+ command: setRestart
1177
+ M0005:
1178
+ description: |-
1179
+ Activate emergency route.
1180
+ The function is made for emergency prioritization. Works in the same way as the M0006 and M0008 where the traffic light controller responds to an input.
1181
+ Should be used in situations where full priority is given in the emergency vehicle program.
1182
+ Requires security code 2.
1183
+ arguments:
1184
+ status:
1185
+ type: boolean
1186
+ description: |-
1187
+ False: Deactivate emergency route
1188
+ True: Activate emergency route
1189
+ securityCode:
1190
+ type: string
1191
+ description: Security code 2
1192
+ emergencyroute:
1193
+ type: integer
1194
+ description: Number of emergency route
1195
+ min: 1
1196
+ max: 255
1197
+ command: setEmergency
1198
+ M0006:
1199
+ description: |-
1200
+ Activate input.
1201
+ Set given input (1-255) of the controllers general purpose I/O to either true or false.
1202
+ The function can provide an input to the traffic light controller on which a predefined action can be taken.
1203
+ Can be used for all types of input where the traffic light controller must react to external control.
1204
+ Typical usages are bus priority, coordination between traffic controllers, external control systems, and much more.
1205
+ Requires security code 2.
1206
+ arguments:
1207
+ status:
1208
+ type: boolean
1209
+ description: |-
1210
+ False: Deactivate input
1211
+ True: Activate input
1212
+ securityCode:
1213
+ type: string
1214
+ description: Security code 2
1215
+ input:
1216
+ type: integer
1217
+ description: Number of Input
1218
+ min: 1
1219
+ max: 255
1220
+ command: setInput
1221
+ M0007:
1222
+ description: |-
1223
+ Activate fixed time control.
1224
+ Deactivates the traffic actuated control using detectors and activates pre-timed control.
1225
+ Can be used in case normal detectors can't be used, e.g. during maintenance work.
1226
+ Requires security code 2.
1227
+ arguments:
1228
+ status:
1229
+ type: boolean
1230
+ description: |-
1231
+ False: Deactivate fixed time control
1232
+ True: Activate fixed time control
1233
+ securityCode:
1234
+ type: string
1235
+ description: Security code 2
1236
+ command: setFixedTime
1237
+ M0012:
1238
+ description: |-
1239
+ Request start or stop of a series of signal groups.
1240
+ Starts or stops several signal groups.
1241
+ This command was introduced due to coordination requirements needing to set many signal groups to green and red at the same time and M0010 and M0012 being to slow to send a message for each signal group individually.
1242
+ Although this command is intended to be used with coordination it is not actually specified to be used for this yet. It is reserved in the SXL for possible future use.
1243
+ Intended for use with coordination of signaling systems where a traffic light controller communicates with neighboring controllers.
1244
+ Only used when a primary controller orders signal group of other controller to green or red (Coordination with external control bits).
1245
+ May also include purposes for adaptive control where a UTC system or a local traffic light controller takes over the phase control (stage control).
1246
+ Requires security code 2.
1247
+ reserved: true
1248
+ arguments:
1249
+ status:
1250
+ type: string
1251
+ description: |-
1252
+ Orders signal groups to green or red. Sets a block of 16 signal groups at a time. Can be repeated to set several blocks of 16 signal groups. Values are separated with comma. Blocks are separated with semicolon. Since semicolon breaks the SXL csv-format, colon is used in example below.
1253
+
1254
+ 1=Order signal group to green
1255
+ 0=Order signal group to red
1256
+
1257
+ Format: [Offset],[Bits to set],[Bits to unset]:...
1258
+
1259
+ Offset sets where the 16 inputs starts from followed by two 16 bit values telling which bit to set and unset in binary format, i.e. first bit have value 1 and last bit have value 32768.
1260
+
1261
+ Example 1:
1262
+ "5, 4134, 65" sets input 6,7,10,17 = on and 5,11 = off
1263
+ (Input starts from no. 5 and bit 1,2,5,12 = 1 and bit 0,6 = 0)
1264
+
1265
+ Example 2:
1266
+ "22, 1, 4" sets input 22 = on and 24 = off
1267
+ (Input starts from no. 22 and bit 0 = 1 and bit 2 = 0)
1268
+
1269
+ And both these examples could be sent in the same message as:
1270
+ "5,4143,65:22,1,4"
1271
+
1272
+ Such a message would order signal group 6,7,10,17,22 to green and signal group 5,11,24 to red
1273
+ securityCode:
1274
+ type: string
1275
+ description: Security code 2
1276
+ command: setStart
1277
+ M0013:
1278
+ description: |-
1279
+ Activate a series of inputs
1280
+
1281
+ Set given inputs (1-255) of the controllers general purpose I/O to either true or false. This command was introduced due to coordination requirements needing to set many inputs to true/false at the same time and M0006 being to slow to send a message for each input individually. With this command many inputs can be set to true/false at the same time using a single command message. It can be used for all types of input where the traffic light controller must react to external control. Typical usages are bus priority, coordination between traffic controllers, external control systems, and much more.
1282
+
1283
+ Requires security code 2.
1284
+
1285
+ The parameter 'status' sets/unsets a block of 16 inputs at a time. It can be repeated to set several blocks of 16 inputs. Values are separated with comma. Blocks are separated with semicolon. Format: [Offset];[Bits to set];[Bits to unset];...
1286
+
1287
+ - 'Offset' defines where the 16 inputs starts from
1288
+ - 'Bits to set' defines which bit(s) to set. '0' if unused
1289
+ - 'Bits to unset' defines which bit(s) to unset. '0' if unused
1290
+
1291
+ Example 1:
1292
+ "3,4134,65" sets input 4,5,8,15 and unsets 3,9
1293
+ - Input starts from no. 5
1294
+ - "4134" is 1 0000 0010 0110 in binary, but since input starts from 3, it is shifted 3 bits, e.g. 1000 0001 0011 0000 which are bits 4,5,8,15
1295
+ - "65" is 100 0001 in binary, but since input starts from 3, it is shifted 3 bits, e.g. 10 0000 1000 which are bits 3,9
1296
+
1297
+ Example 2:
1298
+ "12,1,4" sets input 12 and unsets 14
1299
+ - Input starts from no. 12
1300
+ - "1" is 1 in binary, but since input starts at 12 it is shifted 12 bits, e.g. 1 0000 0000 0000, which is bit 12
1301
+ - "4" is 100 in binary, but since input starts at 12 it is shifted 12 bits, e.g. 100 0000 0000 0000, which is bit 14
1302
+
1303
+ And both these examples could be sent in the same message as: "3,4143,65;12,1,4"
1304
+
1305
+ Such a message would set input 4,5,8,12,15 and unset input 3,9,14
1306
+
1307
+ Example 3:
1308
+ "0,1,2" sets input 0 and unsets 1
1309
+ - Input starts from 0
1310
+ - "1" is 1 in binary, which is bit 0
1311
+ - "2" is 10 in binary, which is bit 1
1312
+ arguments:
1313
+ status:
1314
+ type: string
1315
+ description: |-
1316
+ Sets/Unsets a block of 16 inputs at a time. Can be repeated to set several blocks of 16 inputs. Values are separated with comma. Blocks are separated with semicolon.
1317
+ Format: [Offset];[Bits to set];[Bits to unset];...
1318
+ securityCode:
1319
+ type: string
1320
+ description: Security code 2
1321
+ command: setInput
1322
+ M0014:
1323
+ description: |-
1324
+ Set dynamic bands.
1325
+ Can be used to change between predefined signal timings. Moves the start of signal groups in the cycle.
1326
+ This command can be used to change the split of green time during the cycle. A typical usage is scenario based control where changing of signal timings is used for optimal traffic flow.
1327
+ Requires security code 2
1328
+ arguments:
1329
+ plan:
1330
+ type: integer
1331
+ description: Plan to be changed
1332
+ min: 0
1333
+ max: 255
1334
+ status:
1335
+ type: string
1336
+ description: |-
1337
+ Dynamic bands.
1338
+ Each dynamic band are written as dd-ee where:
1339
+ dd=Dynamic band number (from 1-10)
1340
+ ee=Extension in seconds in this band
1341
+
1342
+ Each dynamic band is separated with a comma.
1343
+
1344
+ E.g.
1345
+ dd-ee,dd-ee
1346
+ securityCode:
1347
+ type: string
1348
+ description: Security code 2
1349
+ command: setCommands
1350
+ M0015:
1351
+ description: |-
1352
+ Set Offset time.
1353
+ Offset time is used to define an offset between intersections in coordinated control. It is based on the expected travel time between intersections.
1354
+ This command can be used to fine tune the coordination for optimal traffic flow.
1355
+ Requires security code 2.
1356
+ arguments:
1357
+ status:
1358
+ type: integer
1359
+ description: Set offset time in seconds
1360
+ min: 0
1361
+ max: 255
1362
+ plan:
1363
+ type: integer
1364
+ description: Time plan nr
1365
+ min: 0
1366
+ max: 255
1367
+ securityCode:
1368
+ type: string
1369
+ description: Security code 2
1370
+ command: setOffset
1371
+ M0016:
1372
+ description: |-
1373
+ Set week time table.
1374
+ Set which time table for signal programs to use for each day during a week.
1375
+ This command changes the signal timings during the week for optimal traffic flow.
1376
+ Requires security code 2.
1377
+ arguments:
1378
+ status:
1379
+ type: string
1380
+ description: |-
1381
+ Week time table. Defines time table to use for each week day
1382
+ Each segment is written as d-t where:
1383
+ d=day of week
1384
+ t=time table nr
1385
+
1386
+ Day of week legend:
1387
+ 0=Monday
1388
+ 1=Tuesday
1389
+ 2=Wednesday
1390
+ 3=Thursday
1391
+ 4=Friday
1392
+ 5=Saturday
1393
+ 6=Sunday
1394
+
1395
+ Each segment is separated with a comma
1396
+
1397
+ E.g.
1398
+ d-t,d-t
1399
+ securityCode:
1400
+ type: string
1401
+ description: Security code 2
1402
+ command: setWeekTable
1403
+ M0017:
1404
+ description: |-
1405
+ Set time tables.
1406
+ Set time of day for when to automatically switch signal program (time plan).
1407
+ This command changes the signal timings according to time of day for optimal traffic flow.
1408
+ Requires security code 2.
1409
+ arguments:
1410
+ status:
1411
+ type: string
1412
+ description: |-
1413
+ Time Table. Defines time tables.
1414
+ Each time definition is written as t-o-h-m where:
1415
+ t=time table nr (1-12)
1416
+ o=function
1417
+ h=hour - switching time
1418
+ m=minute - switching minute
1419
+
1420
+ Function legend:
1421
+ 0=no plan is selected by time table
1422
+ 1=set plan 1
1423
+ ...
1424
+ 16= set plan 16
1425
+
1426
+ hour and minute is using local time (not UTC)
1427
+
1428
+ Each time definition is separated with a comma.
1429
+
1430
+ E.g.
1431
+ t-o-h-m,t-o-h-m
1432
+ securityCode:
1433
+ type: string
1434
+ description: Security code 2
1435
+ command: setTimeTable
1436
+ M0018:
1437
+ description: |-
1438
+ Set Cycle time.
1439
+ Cycle time (or cycle length) is the sum of all phases in a time plan (traffic program). This time is fixed when using fixed time control or coordination (except "local coordination"). When the cycle counter reaches this length it is reset back to zero.
1440
+ This command provides the ability to change the cycle time when using coordinated or fixed time control. It changes the timings for optimal traffic flow. Can be used with scenario based control.
1441
+ Requires security code 2.
1442
+ arguments:
1443
+ status:
1444
+ type: integer
1445
+ description: Set cycle time in seconds
1446
+ min: 1
1447
+ max: 255
1448
+ plan:
1449
+ type: integer
1450
+ description: Time plan nr
1451
+ min: 0
1452
+ max: 255
1453
+ securityCode:
1454
+ type: string
1455
+ description: Security code 2
1456
+ command: setCycleTime
1457
+ M0019:
1458
+ description: |-
1459
+ Force input.
1460
+ Force a given input (1-255) of the controllers general purpose I/O to either True or False. Can be used for all types of input where the traffic light controller must react to external control.
1461
+ Can be used for bus priority, coordination between traffic controllers, external control systems, and much more.
1462
+ Requires security code 2.
1463
+ arguments:
1464
+ status:
1465
+ type: boolean
1466
+ description: |-
1467
+ False: Release input
1468
+ True: Force input
1469
+ securityCode:
1470
+ type: string
1471
+ description: Security code 2
1472
+ input:
1473
+ type: integer
1474
+ description: Number of Input
1475
+ min: 1
1476
+ max: 255
1477
+ inputValue:
1478
+ type: boolean
1479
+ description: |-
1480
+ False: input forced to False
1481
+ True: input forced to True
1482
+ command: setInput
1483
+ M0020:
1484
+ description: |-
1485
+ Force output.
1486
+ Force a given output (1-255) of the controllers general purpose I/O to either True of False. Can be used for all types of output where the traffic light controller needs to control other equipment.
1487
+ Can be used for bus priority, coordination between traffic controllers, external control systems, and much more.
1488
+ Requires security code 2.
1489
+ arguments:
1490
+ status:
1491
+ type: boolean
1492
+ description: |-
1493
+ False: Force output
1494
+ True: Release output
1495
+ securityCode:
1496
+ type: string
1497
+ description: Security code 2
1498
+ output:
1499
+ type: integer
1500
+ description: Number of Output
1501
+ min: 1
1502
+ max: 255
1503
+ outputValue:
1504
+ type: boolean
1505
+ description: |-
1506
+ False: output forced to False
1507
+ True: output forced to True
1508
+ command: setOutput
1509
+ M0021:
1510
+ description: |-
1511
+ Set trigger level sensitivity for loop detector.
1512
+ The trigger level sensitivity determines at what level a loop detector should trigger. If it set too low then then traffic will not be detected as intended. If it is set too high the detector might give false positives.
1513
+ This command provides the ability to fine tune loop detectors to make sure they detect traffic as intended.
1514
+ Requires security code 2
1515
+ arguments:
1516
+ status:
1517
+ type: string
1518
+ description: |-
1519
+ Loop detector trigger level sensitivity is written as dd-ss where:
1520
+ dd=loop detector number
1521
+ ss=sensitivity value
1522
+ securityCode:
1523
+ type: string
1524
+ description: Security code 2
1525
+ command: setLevel
1526
+ M0022:
1527
+ description: |-
1528
+ Request Signal Priority
1529
+
1530
+ Useful for bus priority or other type of priorities like emergency vehicles or groups of cyclists.
1531
+
1532
+ The benefit of using this message over activating inputs or detector logics is that you can specify a priority level, vehicle type and estimated time of arrival. You can also update or cancel the request, and use the corresponding status message to track the status of the request, including how much priority was actually given.
1533
+
1534
+ To understand how this command relates to ETSI/J2735, please see the [wiki](https://github.com/rsmp-nordic/rsmp_sxl_traffic_lights/wiki/Signal-priority-and-ETSI-J2735).
1535
+
1536
+ Activating signal priority is expected to provide more green time for a particular movement through the intersection, but the exact mechanism must typically be configured in the controller.
1537
+
1538
+ The movement to prioritize can be referenced in a number of ways, depending on what is configured in the controller, and in the system that sends priority requests. Either:
1539
+
1540
+ - Reference a signal group by setting 'signalGroupId'. This method is simple, but will not allow you to have different priority mechanism for the same signal group, unless they can be distinguished by the vehicle type. For example, if you need to trigger different priorities depending on whether a bus goes straight or makes a turn for the same signal group, you need to use of the other referencing methods.
1541
+ - Reference an input by setting 'inputId'. This can be useful if you previously used inputs to activate priority. The input will not be activated, only the priority.
1542
+ - Reference a connection by setting 'connectionId'. A connection is a movement from a specific ingoing lane to a specific outgoing lane.
1543
+ - Reference an intersection approach by setting 'approachId'.
1544
+ - Reference an ingoing lane by setting 'laneInId', and optionally also reference an outgoing lane by setting 'laneOutId'.
1545
+
1546
+ Referencing attributes that are not used must be left out, rather than set to null or empty strings. This includes:
1547
+
1548
+ - signalGroupId
1549
+ - inputId
1550
+ - connectionId
1551
+ - approachId
1552
+ - laneInId
1553
+ - laneOutId
1554
+
1555
+ Referencing attributes are only used when initiating a request. When updating or cancelling the request, the request is identified by its requestId, and no referencing attributes are allowed.
1556
+
1557
+ You initiate a priority request with type set to 'new'. You must provide a request id that uniquely identifies the request on the controller. It can be a randomly generated UUID (universally unique identifier), or it can be constructed by combining e.g. a vehicle id and some other identifier. When updating or cancelling a request, you must pass the same request id again.
1558
+
1559
+ Providing ETA (estimated time of arrival) when initiating a request is optional, but can help the controller plan ahead in cases where you're able to send the request before the vehicle arrives at the intersection. You're allowed to initiate the request without an ETA and provide it in a later request update. But providing the ETA when initiating the request is recommended, since it will give the controller more time to plan ahead.
1560
+
1561
+ Like ETA, providing a vehicle type is optional, but can help the controller decide how to best handle the request.
1562
+
1563
+ The priority level provides a way to indicate the relative importance of the request compared to other requests. For example, emergency vehicles or delayed buses could be given a higher priority level.
1564
+
1565
+ If the ETA changes before the priority is cancelled, or you want to change the priority level, you can send another request message with type set to 'update'. The vehicle type cannot be changed.
1566
+
1567
+ When you send a priority request, it will be processed to decide if it's possible to activate the requested priority.
1568
+
1569
+ If the request is accepted, the priority can either be activated immediately, or if another priority is currently active, it can be queued for later activation.
1570
+
1571
+ If the priority cannot be accepted the request is rejected. Cooldown is a specific type of rejection, which means that s similar request has just completed, and some time needs to pass before a similar request can be activated.
1572
+
1573
+ When a request is queued, it is expected to become activated later, but in case too long passes without activation, the controller is expected to time out the request.
1574
+
1575
+ Once a priority is activated, you're excepted to cancel it as soon as there's no need for it anymore, typically when the vehicle has passed the intersection. You cancel a request by sending a request passing the existing request id setting the type to 'cancel'.
1576
+
1577
+ If a request is never cancelled, the controller is expected to remove the priority at some point, but until then the priority might block requests in other direction which is why you should always cancel a priority when it's not needed anymore.
1578
+ arguments:
1579
+ requestId:
1580
+ type: string
1581
+ description: A string that uniquely identifies the request on the controller
1582
+ signalGroupId:
1583
+ type: string
1584
+ optional: true
1585
+ description: ID of a signal group component.
1586
+ inputId:
1587
+ type: integer
1588
+ optional: true
1589
+ description: ID of an input, using the same numbering scheme as M0006
1590
+ min: 0
1591
+ max: 255
1592
+ connectionId:
1593
+ type: integer
1594
+ optional: true
1595
+ description: ID of a connection, connecting an ingoing and an outgoing lane
1596
+ min: 0
1597
+ max: 255
1598
+ approachId:
1599
+ type: integer
1600
+ optional: true
1601
+ description: ID of an intersection approach
1602
+ min: 0
1603
+ max: 16
1604
+ laneInId:
1605
+ type: integer
1606
+ optional: true
1607
+ description: ID of an ingoing lane
1608
+ min: 0
1609
+ max: 255
1610
+ laneOutId:
1611
+ type: integer
1612
+ optional: true
1613
+ description: ID of an outgoing lane
1614
+ min: 0
1615
+ max: 255
1616
+ priorityId:
1617
+ type: integer
1618
+ optional: true
1619
+ description: ID of a priority
1620
+ min: 0
1621
+ max: 255
1622
+ type:
1623
+ type: string
1624
+ values:
1625
+ new: New priority request
1626
+ update: Update to existing priority request
1627
+ cancel: Cancel an existing priority
1628
+ level:
1629
+ type: integer
1630
+ description: |-
1631
+ 0: Lowest, 14: Highest
1632
+ min: 0
1633
+ max: 14
1634
+ eta:
1635
+ type: integer
1636
+ optional: true
1637
+ description: Estimated time of arrival to the intersection, in seconds
1638
+ min: 0
1639
+ max: 255
1640
+ vehicleType:
1641
+ type: string
1642
+ optional: true
1643
+ description: Vehicle type
1644
+ values:
1645
+ pedestrian: Pedestrians
1646
+ bicycle: Bicycles
1647
+ motorcycle: Motorcycles
1648
+ car: Passenger vehicle
1649
+ bus: Bus used for public transport
1650
+ lightTruck: Light truck
1651
+ heavyTruck: Heavy truck
1652
+ tram: Trams used for Public transport
1653
+ emergency: Police, fire or ambulance
1654
+ safetyCar: For e.g. escort vehicles
1655
+ specialTransport: For e.g. heavy load
1656
+ other: Other type of vehicle
1657
+ command: requestPriority
1658
+ M0023:
1659
+ description: |-
1660
+ Set timeout for dynamic bands
1661
+ Switch to a designated time plan if this timeout is reached due to lost connection with the supervisor.
1662
+ Disable by setting timeout to '0'.
1663
+ Used in conjunction with dynamic bands, M0014
1664
+ Requires security code 2.
1665
+ arguments:
1666
+ status:
1667
+ type: integer
1668
+ min: 0
1669
+ max: 65535
1670
+ description: Timeout, in minutes
1671
+ securityCode:
1672
+ type: string
1673
+ description: Security code 2
1674
+ command: setTimeout
1675
+ M0103:
1676
+ description: |-
1677
+ Set security code.
1678
+ Change the security code to use when sending commands
1679
+ Security codes are used as an extra layer of security in many commands. They need to match between the supervision system and the traffic light controller in order for the commands to be executed.
1680
+ arguments:
1681
+ status:
1682
+ type: string
1683
+ values:
1684
+ Level1: Change security code 1
1685
+ Level2: Change security code 2
1686
+ oldSecurityCode:
1687
+ type: string
1688
+ description: Previous security code
1689
+ newSecurityCode:
1690
+ type: string
1691
+ description: New security code
1692
+ command: setSecurityCode
1693
+ M0104:
1694
+ description: |-
1695
+ Set clock.
1696
+ Can be used to manually set the clock of the traffic light controller if automatic time synchronization (NTP or watchdog sync) is not available. For instance, during maintenance work.
1697
+ Note: UTC is used.
1698
+ Requires security code 1
1699
+ arguments:
1700
+ securityCode:
1701
+ type: string
1702
+ description: Security code 1
1703
+ year:
1704
+ type: integer
1705
+ description: Year
1706
+ min: 0
1707
+ max: 9999
1708
+ month:
1709
+ type: integer
1710
+ description: Month
1711
+ min: 1
1712
+ max: 12
1713
+ day:
1714
+ type: integer
1715
+ description: Day of month
1716
+ min: 1
1717
+ max: 31
1718
+ hour:
1719
+ type: integer
1720
+ description: Hour
1721
+ min: 0
1722
+ max: 23
1723
+ minute:
1724
+ type: integer
1725
+ description: Minute
1726
+ min: 0
1727
+ max: 59
1728
+ second:
1729
+ type: integer
1730
+ description: Second
1731
+ min: 0
1732
+ max: 59
1733
+ command: setDate
1734
+ Signal group:
1735
+ description:
1736
+ alarms:
1737
+ A0008:
1738
+ description: |-
1739
+ Dead lock error.
1740
+ Used for dead lock errors.
1741
+ For instance; a signal group has requested green but is unable to switch due to a conflicting signal group for an extended period of time. At some point the request times out and the controller goes failure mode. The cause for this error is due to configuration errors or external sources.
1742
+ Is a "major fault" defined according to 3.8 in EN12675 which causes the controller to switch to a "failure mode" according to 3.6 in EN12675.
1743
+ priority: 2
1744
+ category: D
1745
+ arguments:
1746
+ timeplan:
1747
+ type: integer
1748
+ description: Current time plan
1749
+ min: 1
1750
+ max: 255
1751
+ A0101:
1752
+ description: |-
1753
+ Pushbutton error.
1754
+ Used for push buttons.
1755
+ priority: 3
1756
+ category: D
1757
+ A0201:
1758
+ description: |-
1759
+ Serious lamp error.
1760
+ Used for lamp errors.
1761
+ Is a "major fault" defined according to 3.8 in EN12675 which causes the controller to switch to a "failure mode" according to 3.6 in EN12675.
1762
+ priority: 2
1763
+ category: D
1764
+ arguments:
1765
+ color:
1766
+ type: string
1767
+ description: Color of lamp
1768
+ values:
1769
+ red: red
1770
+ yellow: yellow
1771
+ green: green
1772
+ A0202:
1773
+ description: |-
1774
+ Less serious lamp error.
1775
+ Used for lamp errors.
1776
+ Is a "minor fault" defined according to 3.11 in EN12675.
1777
+ priority: 3
1778
+ category: D
1779
+ arguments:
1780
+ color:
1781
+ type: string
1782
+ description: Color of lamp
1783
+ values:
1784
+ red: red
1785
+ yellow: yellow
1786
+ green: green
1787
+ statuses:
1788
+ S0025:
1789
+ description: |-
1790
+ Time-of-Green / Time-of-Red.
1791
+ Provides predicted signal timings of green and red for each signal group. Max, min and likely time to green and red.
1792
+ arguments:
1793
+ minToGEstimate:
1794
+ type: timestamp
1795
+ description: |-
1796
+ Time stamp for the minimum time for the signal group to go to green. If the signal group is green, it is the minimum time for the next green.
1797
+ 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
1798
+ maxToGEstimate:
1799
+ type: timestamp
1800
+ description: |-
1801
+ Time stamp for the maximum time for the signal group to go to green. If the signal group is green, it is the maximum time for the next green.
1802
+ 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
1803
+ likelyToGEstimate:
1804
+ type: timestamp
1805
+ description: |-
1806
+ 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.
1807
+ 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
1808
+ ToGConfidence:
1809
+ type: integer
1810
+ description: Confidence of the likelyToGEstimate. 0-100%
1811
+ min: 0
1812
+ max: 100
1813
+ minToREstimate:
1814
+ type: timestamp
1815
+ description: |-
1816
+ Time stamp for the minimum time for the signal group to go to red. If the signal group is red, it is the minimum time for the next red.
1817
+ 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
1818
+ maxToREstimate:
1819
+ type: timestamp
1820
+ description: |-
1821
+ Time stamp for the maximum time for the signal group to go to red. If the signal group is red, it is the maximum time for the next red.
1822
+ 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
1823
+ likelyToREstimate:
1824
+ type: timestamp
1825
+ description: |-
1826
+ 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.
1827
+ 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
1828
+ ToRConfidence:
1829
+ type: integer
1830
+ description: Confidence of the likelyToREstimate. 0-100%
1831
+ min: 0
1832
+ max: 100
1833
+ commands:
1834
+ M0010:
1835
+ description: |-
1836
+ Start of signal group. Orders a signal group to green.
1837
+ Although this command is intended to be used with coordination it is not actually specified to be used for this yet. It is reserved in the SXL for possible future use.
1838
+ Intended for use with coordination of signaling systems where a traffic light controller communicates with neighboring controllers. Only used when a primary controller orders signal group of other controller to green or red (Coordination with external control bits).
1839
+ Requires security code 2
1840
+ reserved: true
1841
+ arguments:
1842
+ status:
1843
+ type: boolean
1844
+ description: |-
1845
+ False: No command (default)
1846
+ True: Order a signal group to green
1847
+ securityCode:
1848
+ type: string
1849
+ description: Security code 2
1850
+ command: setStart
1851
+ M0011:
1852
+ description: |-
1853
+ Stop of signal group. Orders a signal group to red.
1854
+ Although this command is intended to be used with coordination it is not actually specified to be used for this yet. It is reserved in the SXL for possible future use.
1855
+ Intended for use with coordination of signaling systems where a traffic light controller communicates with neighboring controllers. Only used when a primary controller orders signal group of other controller to green or red (Coordination with external control bits).
1856
+ Requires security code 2
1857
+ reserved: true
1858
+ arguments:
1859
+ status:
1860
+ type: boolean
1861
+ description: |-
1862
+ False: No command (default)
1863
+ True: Order a signal group to red
1864
+ securityCode:
1865
+ type: string
1866
+ description: Security code 2
1867
+ command: setStop
1868
+ Detector logic:
1869
+ description:
1870
+ alarms:
1871
+ A0301:
1872
+ description: |-
1873
+ Detector error (hardware).
1874
+ Is a "minor fault" defined according to 3.11 in EN12675.
1875
+ priority: 3
1876
+ category: D
1877
+ arguments:
1878
+ detector:
1879
+ type: string
1880
+ description: Designation of the detector (hardware)
1881
+ type:
1882
+ type: string
1883
+ description: Type of detector
1884
+ values:
1885
+ loop: Inductive detector loop
1886
+ input: External input
1887
+ errormode:
1888
+ type: string
1889
+ description: Detector forced on/off while detector error
1890
+ values: ['on','off']
1891
+ manual:
1892
+ type: boolean
1893
+ description: Manually controlled detector logic (True/False)
1894
+ A0302:
1895
+ description: |-
1896
+ Detector error (logic error).
1897
+ For instance; detector continuously on or off during an extended time.
1898
+ Is a "minor fault" defined according to 3.11 in EN12675.
1899
+ priority: 3
1900
+ category: D
1901
+ arguments:
1902
+ detector:
1903
+ type: string
1904
+ description: Designation of the detector (hardware)
1905
+ type:
1906
+ type: string
1907
+ description: Type of detector.
1908
+ values:
1909
+ loop: Inductive detector loop
1910
+ input: External input
1911
+ errormode:
1912
+ type: string
1913
+ description: Detector forced on/off while detector error
1914
+ values: ['on','off']
1915
+ manual:
1916
+ type: boolean
1917
+ description: Manually controlled detector logic (True/False)
1918
+ logicerror:
1919
+ type: string
1920
+ description: Type of logic error
1921
+ values:
1922
+ always_off: no detection during predefined max time
1923
+ always_on: detection constantly on during predefined max time
1924
+ intermittent: intermittent logic fault (flutter)
1925
+ A0303:
1926
+ description: |-
1927
+ Serious detector error (hardware).
1928
+ Is a "major fault" defined according to 3.8 i EN12675 which causes the controller to switch to a "failure mode" according to 3.6 in EN12675.
1929
+ priority: 2
1930
+ category: D
1931
+ arguments:
1932
+ detector:
1933
+ type: string
1934
+ description: Designation of the detector (hardware)
1935
+ type:
1936
+ type: string
1937
+ description: Type of detector.
1938
+ values:
1939
+ loop: Inductive detector loop
1940
+ input: External input
1941
+ errormode:
1942
+ type: string
1943
+ description: Detector forced on/off while detector error
1944
+ values: ['on','off']
1945
+ manual:
1946
+ type: boolean
1947
+ description: Manually controlled detector logic (True/False)
1948
+ A0304:
1949
+ description: |-
1950
+ Serious detector error (logic error).
1951
+ For instance; detector continuously on or off during an extended time.
1952
+ Is a "major fault" defined according to 3.8 i EN12675 which causes the controller to switch to a "failure mode" according to 3.6 in EN12675
1953
+ priority: 2
1954
+ category: D
1955
+ arguments:
1956
+ detector:
1957
+ type: string
1958
+ description: Designation of the detector (hardware)
1959
+ type:
1960
+ type: string
1961
+ description: Type of detector.
1962
+ values:
1963
+ loop: Inductive detector loop
1964
+ input: External input
1965
+ errormode:
1966
+ type: string
1967
+ description: Detector forced on/off while detector error
1968
+ # on/off must be quoted, otherwise they are parsed as true/false
1969
+ values: ['on','off']
1970
+ manual:
1971
+ type: boolean
1972
+ description: Manually controlled detector logic (True/False)
1973
+ logicerror:
1974
+ type: string
1975
+ description: Type of logic error
1976
+ values:
1977
+ always_off: no detection during predefined max time
1978
+ always_on: detection constantly on during predefined max time
1979
+ intermittent: intermittent logic fault (flutter)
1980
+ statuses:
1981
+ S0201:
1982
+ description: |-
1983
+ Traffic Counting: Number of vehicles.
1984
+ Used for Traffic counting.
1985
+ arguments:
1986
+ starttime:
1987
+ type: timestamp
1988
+ description: Time stamp for start of measuring. Format according to W3C
1989
+ XML dateTime with a resolution of 3 decimal places. All time stamps
1990
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
1991
+ vehicles:
1992
+ type: integer
1993
+ description: Number of vehicles on a given detector logic (since last
1994
+ update)
1995
+ min: 0
1996
+ max: 65535
1997
+ S0202:
1998
+ description: |-
1999
+ Traffic Counting: Vehicle speed.
2000
+ Used for Traffic counting.
2001
+ arguments:
2002
+ starttime:
2003
+ type: timestamp
2004
+ description: |-
2005
+ Time stamp for start of measuring. Format according to W3C
2006
+ XML dateTime with a resolution of 3 decimal places. All time stamps
2007
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
2008
+ speed:
2009
+ type: integer
2010
+ description: Average speed in km/h
2011
+ min: 0
2012
+ max: 65535
2013
+ S0203:
2014
+ description: |-
2015
+ Traffic Counting: Occupancy.
2016
+ Used for Traffic counting.
2017
+ arguments:
2018
+ starttime:
2019
+ type: timestamp
2020
+ description: |-
2021
+ Time stamp for start of measuring. Format according to W3C
2022
+ XML dateTime with a resolution of 3 decimal places. All time stamps
2023
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
2024
+ occupancy:
2025
+ type: integer
2026
+ description: Occupancy in percent (0-100%)
2027
+ min: 0
2028
+ max: 100
2029
+ S0204:
2030
+ description: |-
2031
+ Traffic Counting: Number of vehicles of given classification.
2032
+ Used for Traffic counting.
2033
+ arguments:
2034
+ starttime:
2035
+ type: timestamp
2036
+ description: |-
2037
+ Time stamp for start of measuring. Format according to W3C
2038
+ XML dateTime with a resolution of 3 decimal places. All time stamps
2039
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
2040
+ P:
2041
+ type: integer
2042
+ description: Number of cars
2043
+ min: 0
2044
+ max: 65535
2045
+ PS:
2046
+ type: integer
2047
+ description: Number of cars with trailers
2048
+ min: 0
2049
+ max: 65535
2050
+ L:
2051
+ type: integer
2052
+ description: Number of trucks
2053
+ min: 0
2054
+ max: 65535
2055
+ LS:
2056
+ type: integer
2057
+ description: Number of trucks with trailers
2058
+ min: 0
2059
+ max: 65535
2060
+ B:
2061
+ type: integer
2062
+ description: Number of buses
2063
+ min: 0
2064
+ max: 65535
2065
+ SP:
2066
+ type: integer
2067
+ description: Number of trams
2068
+ min: 0
2069
+ max: 65535
2070
+ MC:
2071
+ type: integer
2072
+ description: Number of motor cycles
2073
+ min: 0
2074
+ max: 65535
2075
+ C:
2076
+ type: integer
2077
+ description: Number of bicycles
2078
+ min: 0
2079
+ max: 65535
2080
+ F:
2081
+ type: integer
2082
+ description: Number of pedestrians
2083
+ min: 0
2084
+ max: 65535
2085
+ commands:
2086
+ M0008:
2087
+ description: |-
2088
+ Sets manual activation of detector logic.
2089
+ Set given detector logic (1-255) to either true or false.
2090
+ Can e.g. be used to connect RSMP compatible detection equipment to the traffic light controller. Can also be used for prioritization.
2091
+ Requires security code 2
2092
+ arguments:
2093
+ status:
2094
+ type: boolean
2095
+ description: |-
2096
+ False: Deactivate manual control of detector logic
2097
+ True: Activate manual control of detector logic
2098
+ securityCode:
2099
+ type: string
2100
+ description: Security code 2
2101
+ mode:
2102
+ type: boolean
2103
+ description: |-
2104
+ False: Deactivate detector logic
2105
+ True: Activate detector logic
2106
+ command: setForceDetectorLogic