rsmp 0.42.8 → 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 (994) 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/proxy/modules/tasks.rb +1 -1
  13. data/lib/rsmp/schema.rb +210 -0
  14. data/lib/rsmp/schema_error.rb +19 -0
  15. data/lib/rsmp/version.rb +1 -1
  16. data/lib/rsmp.rb +6 -2
  17. data/rsmp.gemspec +2 -1
  18. data/schemas/core/3.1.2/aggregated_status.json +25 -0
  19. data/schemas/core/3.1.2/alarm.json +67 -0
  20. data/schemas/core/3.1.2/alarm_acknowledge.json +12 -0
  21. data/schemas/core/3.1.2/alarm_issue.json +47 -0
  22. data/schemas/core/3.1.2/alarm_suspend_resume.json +3 -0
  23. data/schemas/core/3.1.2/alarm_suspended_resumed.json +47 -0
  24. data/schemas/core/3.1.2/command_request.json +24 -0
  25. data/schemas/core/3.1.2/command_response.json +34 -0
  26. data/schemas/core/3.1.2/core.json +38 -0
  27. data/schemas/core/3.1.2/definitions.json +67 -0
  28. data/schemas/core/3.1.2/message_ack.json +11 -0
  29. data/schemas/core/3.1.2/message_not_ack.json +15 -0
  30. data/schemas/core/3.1.2/rsmp.json +124 -0
  31. data/schemas/core/3.1.2/status.json +21 -0
  32. data/schemas/core/3.1.2/status_request.json +5 -0
  33. data/schemas/core/3.1.2/status_response.json +26 -0
  34. data/schemas/core/3.1.2/status_subscribe.json +27 -0
  35. data/schemas/core/3.1.2/status_unsubscribe.json +5 -0
  36. data/schemas/core/3.1.2/status_update.json +26 -0
  37. data/schemas/core/3.1.2/version.json +47 -0
  38. data/schemas/core/3.1.2/watchdog.json +9 -0
  39. data/schemas/core/3.1.3/aggregated_status.json +25 -0
  40. data/schemas/core/3.1.3/alarm.json +67 -0
  41. data/schemas/core/3.1.3/alarm_acknowledge.json +12 -0
  42. data/schemas/core/3.1.3/alarm_issue.json +47 -0
  43. data/schemas/core/3.1.3/alarm_suspend_resume.json +3 -0
  44. data/schemas/core/3.1.3/alarm_suspended_resumed.json +47 -0
  45. data/schemas/core/3.1.3/command_request.json +24 -0
  46. data/schemas/core/3.1.3/command_response.json +34 -0
  47. data/schemas/core/3.1.3/core.json +38 -0
  48. data/schemas/core/3.1.3/definitions.json +67 -0
  49. data/schemas/core/3.1.3/message_ack.json +11 -0
  50. data/schemas/core/3.1.3/message_not_ack.json +15 -0
  51. data/schemas/core/3.1.3/rsmp.json +124 -0
  52. data/schemas/core/3.1.3/status.json +21 -0
  53. data/schemas/core/3.1.3/status_request.json +5 -0
  54. data/schemas/core/3.1.3/status_response.json +41 -0
  55. data/schemas/core/3.1.3/status_subscribe.json +27 -0
  56. data/schemas/core/3.1.3/status_unsubscribe.json +5 -0
  57. data/schemas/core/3.1.3/status_update.json +41 -0
  58. data/schemas/core/3.1.3/version.json +47 -0
  59. data/schemas/core/3.1.3/watchdog.json +9 -0
  60. data/schemas/core/3.1.4/aggregated_status.json +25 -0
  61. data/schemas/core/3.1.4/alarm.json +65 -0
  62. data/schemas/core/3.1.4/alarm_acknowledge.json +12 -0
  63. data/schemas/core/3.1.4/alarm_issue.json +47 -0
  64. data/schemas/core/3.1.4/alarm_suspend_resume.json +3 -0
  65. data/schemas/core/3.1.4/alarm_suspended_resumed.json +47 -0
  66. data/schemas/core/3.1.4/command_request.json +24 -0
  67. data/schemas/core/3.1.4/command_response.json +34 -0
  68. data/schemas/core/3.1.4/core.json +38 -0
  69. data/schemas/core/3.1.4/definitions.json +67 -0
  70. data/schemas/core/3.1.4/message_ack.json +11 -0
  71. data/schemas/core/3.1.4/message_not_ack.json +15 -0
  72. data/schemas/core/3.1.4/rsmp.json +124 -0
  73. data/schemas/core/3.1.4/status.json +21 -0
  74. data/schemas/core/3.1.4/status_request.json +5 -0
  75. data/schemas/core/3.1.4/status_response.json +41 -0
  76. data/schemas/core/3.1.4/status_subscribe.json +27 -0
  77. data/schemas/core/3.1.4/status_unsubscribe.json +5 -0
  78. data/schemas/core/3.1.4/status_update.json +41 -0
  79. data/schemas/core/3.1.4/version.json +47 -0
  80. data/schemas/core/3.1.4/watchdog.json +9 -0
  81. data/schemas/core/3.1.5/aggregated_status.json +25 -0
  82. data/schemas/core/3.1.5/aggregated_status_request.json +9 -0
  83. data/schemas/core/3.1.5/alarm.json +75 -0
  84. data/schemas/core/3.1.5/alarm_acknowledge.json +12 -0
  85. data/schemas/core/3.1.5/alarm_issue.json +47 -0
  86. data/schemas/core/3.1.5/alarm_request.json +3 -0
  87. data/schemas/core/3.1.5/alarm_suspend_resume.json +3 -0
  88. data/schemas/core/3.1.5/alarm_suspended_resumed.json +47 -0
  89. data/schemas/core/3.1.5/command_request.json +24 -0
  90. data/schemas/core/3.1.5/command_response.json +34 -0
  91. data/schemas/core/3.1.5/core.json +39 -0
  92. data/schemas/core/3.1.5/definitions.json +67 -0
  93. data/schemas/core/3.1.5/message_ack.json +11 -0
  94. data/schemas/core/3.1.5/message_not_ack.json +15 -0
  95. data/schemas/core/3.1.5/rsmp.json +133 -0
  96. data/schemas/core/3.1.5/status.json +21 -0
  97. data/schemas/core/3.1.5/status_request.json +5 -0
  98. data/schemas/core/3.1.5/status_response.json +41 -0
  99. data/schemas/core/3.1.5/status_subscribe.json +31 -0
  100. data/schemas/core/3.1.5/status_unsubscribe.json +5 -0
  101. data/schemas/core/3.1.5/status_update.json +41 -0
  102. data/schemas/core/3.1.5/version.json +47 -0
  103. data/schemas/core/3.1.5/watchdog.json +9 -0
  104. data/schemas/core/3.2.0/aggregated_status.json +25 -0
  105. data/schemas/core/3.2.0/aggregated_status_request.json +9 -0
  106. data/schemas/core/3.2.0/alarm.json +71 -0
  107. data/schemas/core/3.2.0/alarm_acknowledge.json +11 -0
  108. data/schemas/core/3.2.0/alarm_issue.json +44 -0
  109. data/schemas/core/3.2.0/alarm_request.json +3 -0
  110. data/schemas/core/3.2.0/alarm_suspend_resume.json +3 -0
  111. data/schemas/core/3.2.0/alarm_suspended_resumed.json +44 -0
  112. data/schemas/core/3.2.0/command_request.json +24 -0
  113. data/schemas/core/3.2.0/command_response.json +34 -0
  114. data/schemas/core/3.2.0/core.json +39 -0
  115. data/schemas/core/3.2.0/definitions.json +67 -0
  116. data/schemas/core/3.2.0/message_ack.json +11 -0
  117. data/schemas/core/3.2.0/message_not_ack.json +15 -0
  118. data/schemas/core/3.2.0/rsmp.json +133 -0
  119. data/schemas/core/3.2.0/status.json +21 -0
  120. data/schemas/core/3.2.0/status_request.json +5 -0
  121. data/schemas/core/3.2.0/status_response.json +41 -0
  122. data/schemas/core/3.2.0/status_subscribe.json +31 -0
  123. data/schemas/core/3.2.0/status_unsubscribe.json +5 -0
  124. data/schemas/core/3.2.0/status_update.json +41 -0
  125. data/schemas/core/3.2.0/version.json +47 -0
  126. data/schemas/core/3.2.0/watchdog.json +9 -0
  127. data/schemas/core/3.2.1/aggregated_status.json +25 -0
  128. data/schemas/core/3.2.1/aggregated_status_request.json +9 -0
  129. data/schemas/core/3.2.1/alarm.json +71 -0
  130. data/schemas/core/3.2.1/alarm_acknowledge.json +11 -0
  131. data/schemas/core/3.2.1/alarm_issue.json +44 -0
  132. data/schemas/core/3.2.1/alarm_request.json +3 -0
  133. data/schemas/core/3.2.1/alarm_suspend_resume.json +3 -0
  134. data/schemas/core/3.2.1/alarm_suspended_resumed.json +44 -0
  135. data/schemas/core/3.2.1/command_request.json +24 -0
  136. data/schemas/core/3.2.1/command_response.json +34 -0
  137. data/schemas/core/3.2.1/core.json +39 -0
  138. data/schemas/core/3.2.1/definitions.json +67 -0
  139. data/schemas/core/3.2.1/message_ack.json +11 -0
  140. data/schemas/core/3.2.1/message_not_ack.json +15 -0
  141. data/schemas/core/3.2.1/rsmp.json +133 -0
  142. data/schemas/core/3.2.1/status.json +21 -0
  143. data/schemas/core/3.2.1/status_request.json +5 -0
  144. data/schemas/core/3.2.1/status_response.json +41 -0
  145. data/schemas/core/3.2.1/status_subscribe.json +31 -0
  146. data/schemas/core/3.2.1/status_unsubscribe.json +5 -0
  147. data/schemas/core/3.2.1/status_update.json +41 -0
  148. data/schemas/core/3.2.1/version.json +47 -0
  149. data/schemas/core/3.2.1/watchdog.json +9 -0
  150. data/schemas/core/3.2.2/aggregated_status.json +25 -0
  151. data/schemas/core/3.2.2/aggregated_status_request.json +9 -0
  152. data/schemas/core/3.2.2/alarm.json +71 -0
  153. data/schemas/core/3.2.2/alarm_acknowledge.json +11 -0
  154. data/schemas/core/3.2.2/alarm_issue.json +44 -0
  155. data/schemas/core/3.2.2/alarm_request.json +3 -0
  156. data/schemas/core/3.2.2/alarm_suspend_resume.json +3 -0
  157. data/schemas/core/3.2.2/alarm_suspended_resumed.json +44 -0
  158. data/schemas/core/3.2.2/command_request.json +24 -0
  159. data/schemas/core/3.2.2/command_response.json +34 -0
  160. data/schemas/core/3.2.2/core.json +39 -0
  161. data/schemas/core/3.2.2/definitions.json +67 -0
  162. data/schemas/core/3.2.2/message_ack.json +11 -0
  163. data/schemas/core/3.2.2/message_not_ack.json +15 -0
  164. data/schemas/core/3.2.2/rsmp.json +133 -0
  165. data/schemas/core/3.2.2/status.json +21 -0
  166. data/schemas/core/3.2.2/status_request.json +5 -0
  167. data/schemas/core/3.2.2/status_response.json +41 -0
  168. data/schemas/core/3.2.2/status_subscribe.json +31 -0
  169. data/schemas/core/3.2.2/status_unsubscribe.json +5 -0
  170. data/schemas/core/3.2.2/status_update.json +41 -0
  171. data/schemas/core/3.2.2/version.json +47 -0
  172. data/schemas/core/3.2.2/watchdog.json +9 -0
  173. data/schemas/tlc/1.0.10/alarms/A0001.json +4 -0
  174. data/schemas/tlc/1.0.10/alarms/A0002.json +4 -0
  175. data/schemas/tlc/1.0.10/alarms/A0003.json +4 -0
  176. data/schemas/tlc/1.0.10/alarms/A0004.json +4 -0
  177. data/schemas/tlc/1.0.10/alarms/A0005.json +4 -0
  178. data/schemas/tlc/1.0.10/alarms/A0006.json +4 -0
  179. data/schemas/tlc/1.0.10/alarms/A0007.json +4 -0
  180. data/schemas/tlc/1.0.10/alarms/A0008.json +30 -0
  181. data/schemas/tlc/1.0.10/alarms/A0009.json +4 -0
  182. data/schemas/tlc/1.0.10/alarms/A0101.json +4 -0
  183. data/schemas/tlc/1.0.10/alarms/A0201.json +35 -0
  184. data/schemas/tlc/1.0.10/alarms/A0202.json +35 -0
  185. data/schemas/tlc/1.0.10/alarms/A0301.json +92 -0
  186. data/schemas/tlc/1.0.10/alarms/A0302.json +115 -0
  187. data/schemas/tlc/1.0.10/alarms/alarms.json +239 -0
  188. data/schemas/tlc/1.0.10/commands/M0001.json +92 -0
  189. data/schemas/tlc/1.0.10/commands/M0002.json +69 -0
  190. data/schemas/tlc/1.0.10/commands/M0003.json +69 -0
  191. data/schemas/tlc/1.0.10/commands/M0004.json +51 -0
  192. data/schemas/tlc/1.0.10/commands/M0005.json +69 -0
  193. data/schemas/tlc/1.0.10/commands/M0006.json +69 -0
  194. data/schemas/tlc/1.0.10/commands/M0007.json +51 -0
  195. data/schemas/tlc/1.0.10/commands/M0008.json +69 -0
  196. data/schemas/tlc/1.0.10/commands/M0010.json +51 -0
  197. data/schemas/tlc/1.0.10/commands/M0011.json +51 -0
  198. data/schemas/tlc/1.0.10/commands/M0012.json +51 -0
  199. data/schemas/tlc/1.0.10/commands/M0013.json +51 -0
  200. data/schemas/tlc/1.0.10/commands/M0019.json +87 -0
  201. data/schemas/tlc/1.0.10/commands/M0103.json +72 -0
  202. data/schemas/tlc/1.0.10/commands/M0104.json +141 -0
  203. data/schemas/tlc/1.0.10/commands/command_requests.json +8 -0
  204. data/schemas/tlc/1.0.10/commands/command_responses.json +8 -0
  205. data/schemas/tlc/1.0.10/commands/commands.json +255 -0
  206. data/schemas/tlc/1.0.10/defs/definitions.json +67 -0
  207. data/schemas/tlc/1.0.10/defs/guards.json +24 -0
  208. data/schemas/tlc/1.0.10/rsmp.json +74 -0
  209. data/schemas/tlc/1.0.10/statuses/S0001.json +91 -0
  210. data/schemas/tlc/1.0.10/statuses/S0002.json +36 -0
  211. data/schemas/tlc/1.0.10/statuses/S0003.json +54 -0
  212. data/schemas/tlc/1.0.10/statuses/S0004.json +54 -0
  213. data/schemas/tlc/1.0.10/statuses/S0005.json +36 -0
  214. data/schemas/tlc/1.0.10/statuses/S0006.json +54 -0
  215. data/schemas/tlc/1.0.10/statuses/S0007.json +54 -0
  216. data/schemas/tlc/1.0.10/statuses/S0008.json +54 -0
  217. data/schemas/tlc/1.0.10/statuses/S0009.json +54 -0
  218. data/schemas/tlc/1.0.10/statuses/S0010.json +54 -0
  219. data/schemas/tlc/1.0.10/statuses/S0011.json +54 -0
  220. data/schemas/tlc/1.0.10/statuses/S0012.json +54 -0
  221. data/schemas/tlc/1.0.10/statuses/S0013.json +54 -0
  222. data/schemas/tlc/1.0.10/statuses/S0014.json +36 -0
  223. data/schemas/tlc/1.0.10/statuses/S0015.json +36 -0
  224. data/schemas/tlc/1.0.10/statuses/S0016.json +36 -0
  225. data/schemas/tlc/1.0.10/statuses/S0017.json +36 -0
  226. data/schemas/tlc/1.0.10/statuses/S0018.json +36 -0
  227. data/schemas/tlc/1.0.10/statuses/S0019.json +36 -0
  228. data/schemas/tlc/1.0.10/statuses/S0020.json +54 -0
  229. data/schemas/tlc/1.0.10/statuses/S0021.json +37 -0
  230. data/schemas/tlc/1.0.10/statuses/S0091.json +57 -0
  231. data/schemas/tlc/1.0.10/statuses/S0092.json +57 -0
  232. data/schemas/tlc/1.0.10/statuses/S0095.json +36 -0
  233. data/schemas/tlc/1.0.10/statuses/S0096.json +126 -0
  234. data/schemas/tlc/1.0.10/statuses/S0201.json +54 -0
  235. data/schemas/tlc/1.0.10/statuses/S0202.json +54 -0
  236. data/schemas/tlc/1.0.10/statuses/S0203.json +54 -0
  237. data/schemas/tlc/1.0.10/statuses/S0204.json +198 -0
  238. data/schemas/tlc/1.0.10/statuses/statuses.json +483 -0
  239. data/schemas/tlc/1.0.10/sxl.yaml +1010 -0
  240. data/schemas/tlc/1.0.13/alarms/A0001.json +4 -0
  241. data/schemas/tlc/1.0.13/alarms/A0002.json +4 -0
  242. data/schemas/tlc/1.0.13/alarms/A0003.json +4 -0
  243. data/schemas/tlc/1.0.13/alarms/A0004.json +4 -0
  244. data/schemas/tlc/1.0.13/alarms/A0005.json +4 -0
  245. data/schemas/tlc/1.0.13/alarms/A0006.json +4 -0
  246. data/schemas/tlc/1.0.13/alarms/A0007.json +4 -0
  247. data/schemas/tlc/1.0.13/alarms/A0008.json +30 -0
  248. data/schemas/tlc/1.0.13/alarms/A0009.json +4 -0
  249. data/schemas/tlc/1.0.13/alarms/A0101.json +4 -0
  250. data/schemas/tlc/1.0.13/alarms/A0201.json +35 -0
  251. data/schemas/tlc/1.0.13/alarms/A0202.json +35 -0
  252. data/schemas/tlc/1.0.13/alarms/A0301.json +92 -0
  253. data/schemas/tlc/1.0.13/alarms/A0302.json +115 -0
  254. data/schemas/tlc/1.0.13/alarms/alarms.json +239 -0
  255. data/schemas/tlc/1.0.13/commands/M0001.json +92 -0
  256. data/schemas/tlc/1.0.13/commands/M0002.json +69 -0
  257. data/schemas/tlc/1.0.13/commands/M0003.json +69 -0
  258. data/schemas/tlc/1.0.13/commands/M0004.json +51 -0
  259. data/schemas/tlc/1.0.13/commands/M0005.json +69 -0
  260. data/schemas/tlc/1.0.13/commands/M0006.json +69 -0
  261. data/schemas/tlc/1.0.13/commands/M0007.json +51 -0
  262. data/schemas/tlc/1.0.13/commands/M0008.json +69 -0
  263. data/schemas/tlc/1.0.13/commands/M0010.json +51 -0
  264. data/schemas/tlc/1.0.13/commands/M0011.json +51 -0
  265. data/schemas/tlc/1.0.13/commands/M0012.json +51 -0
  266. data/schemas/tlc/1.0.13/commands/M0013.json +51 -0
  267. data/schemas/tlc/1.0.13/commands/M0014.json +69 -0
  268. data/schemas/tlc/1.0.13/commands/M0015.json +69 -0
  269. data/schemas/tlc/1.0.13/commands/M0016.json +51 -0
  270. data/schemas/tlc/1.0.13/commands/M0017.json +51 -0
  271. data/schemas/tlc/1.0.13/commands/M0018.json +69 -0
  272. data/schemas/tlc/1.0.13/commands/M0019.json +87 -0
  273. data/schemas/tlc/1.0.13/commands/M0103.json +72 -0
  274. data/schemas/tlc/1.0.13/commands/M0104.json +141 -0
  275. data/schemas/tlc/1.0.13/commands/command_requests.json +8 -0
  276. data/schemas/tlc/1.0.13/commands/command_responses.json +8 -0
  277. data/schemas/tlc/1.0.13/commands/commands.json +335 -0
  278. data/schemas/tlc/1.0.13/defs/definitions.json +67 -0
  279. data/schemas/tlc/1.0.13/defs/guards.json +24 -0
  280. data/schemas/tlc/1.0.13/rsmp.json +74 -0
  281. data/schemas/tlc/1.0.13/statuses/S0001.json +91 -0
  282. data/schemas/tlc/1.0.13/statuses/S0002.json +36 -0
  283. data/schemas/tlc/1.0.13/statuses/S0003.json +54 -0
  284. data/schemas/tlc/1.0.13/statuses/S0004.json +54 -0
  285. data/schemas/tlc/1.0.13/statuses/S0005.json +36 -0
  286. data/schemas/tlc/1.0.13/statuses/S0006.json +54 -0
  287. data/schemas/tlc/1.0.13/statuses/S0007.json +54 -0
  288. data/schemas/tlc/1.0.13/statuses/S0008.json +54 -0
  289. data/schemas/tlc/1.0.13/statuses/S0009.json +54 -0
  290. data/schemas/tlc/1.0.13/statuses/S0010.json +54 -0
  291. data/schemas/tlc/1.0.13/statuses/S0011.json +54 -0
  292. data/schemas/tlc/1.0.13/statuses/S0012.json +54 -0
  293. data/schemas/tlc/1.0.13/statuses/S0013.json +54 -0
  294. data/schemas/tlc/1.0.13/statuses/S0014.json +36 -0
  295. data/schemas/tlc/1.0.13/statuses/S0015.json +36 -0
  296. data/schemas/tlc/1.0.13/statuses/S0016.json +36 -0
  297. data/schemas/tlc/1.0.13/statuses/S0017.json +36 -0
  298. data/schemas/tlc/1.0.13/statuses/S0018.json +36 -0
  299. data/schemas/tlc/1.0.13/statuses/S0019.json +36 -0
  300. data/schemas/tlc/1.0.13/statuses/S0020.json +54 -0
  301. data/schemas/tlc/1.0.13/statuses/S0021.json +37 -0
  302. data/schemas/tlc/1.0.13/statuses/S0022.json +36 -0
  303. data/schemas/tlc/1.0.13/statuses/S0023.json +37 -0
  304. data/schemas/tlc/1.0.13/statuses/S0024.json +37 -0
  305. data/schemas/tlc/1.0.13/statuses/S0025.json +162 -0
  306. data/schemas/tlc/1.0.13/statuses/S0026.json +36 -0
  307. data/schemas/tlc/1.0.13/statuses/S0027.json +36 -0
  308. data/schemas/tlc/1.0.13/statuses/S0028.json +36 -0
  309. data/schemas/tlc/1.0.13/statuses/S0029.json +36 -0
  310. data/schemas/tlc/1.0.13/statuses/S0091.json +57 -0
  311. data/schemas/tlc/1.0.13/statuses/S0092.json +57 -0
  312. data/schemas/tlc/1.0.13/statuses/S0095.json +36 -0
  313. data/schemas/tlc/1.0.13/statuses/S0096.json +126 -0
  314. data/schemas/tlc/1.0.13/statuses/S0201.json +54 -0
  315. data/schemas/tlc/1.0.13/statuses/S0202.json +54 -0
  316. data/schemas/tlc/1.0.13/statuses/S0203.json +54 -0
  317. data/schemas/tlc/1.0.13/statuses/S0204.json +198 -0
  318. data/schemas/tlc/1.0.13/statuses/statuses.json +611 -0
  319. data/schemas/tlc/1.0.13/sxl.yaml +1312 -0
  320. data/schemas/tlc/1.0.14/alarms/A0001.json +4 -0
  321. data/schemas/tlc/1.0.14/alarms/A0002.json +4 -0
  322. data/schemas/tlc/1.0.14/alarms/A0003.json +4 -0
  323. data/schemas/tlc/1.0.14/alarms/A0004.json +4 -0
  324. data/schemas/tlc/1.0.14/alarms/A0005.json +4 -0
  325. data/schemas/tlc/1.0.14/alarms/A0006.json +4 -0
  326. data/schemas/tlc/1.0.14/alarms/A0007.json +4 -0
  327. data/schemas/tlc/1.0.14/alarms/A0008.json +30 -0
  328. data/schemas/tlc/1.0.14/alarms/A0009.json +4 -0
  329. data/schemas/tlc/1.0.14/alarms/A0101.json +4 -0
  330. data/schemas/tlc/1.0.14/alarms/A0201.json +35 -0
  331. data/schemas/tlc/1.0.14/alarms/A0202.json +35 -0
  332. data/schemas/tlc/1.0.14/alarms/A0301.json +92 -0
  333. data/schemas/tlc/1.0.14/alarms/A0302.json +115 -0
  334. data/schemas/tlc/1.0.14/alarms/alarms.json +239 -0
  335. data/schemas/tlc/1.0.14/commands/M0001.json +92 -0
  336. data/schemas/tlc/1.0.14/commands/M0002.json +69 -0
  337. data/schemas/tlc/1.0.14/commands/M0003.json +69 -0
  338. data/schemas/tlc/1.0.14/commands/M0004.json +51 -0
  339. data/schemas/tlc/1.0.14/commands/M0005.json +69 -0
  340. data/schemas/tlc/1.0.14/commands/M0006.json +69 -0
  341. data/schemas/tlc/1.0.14/commands/M0007.json +51 -0
  342. data/schemas/tlc/1.0.14/commands/M0008.json +69 -0
  343. data/schemas/tlc/1.0.14/commands/M0010.json +51 -0
  344. data/schemas/tlc/1.0.14/commands/M0011.json +51 -0
  345. data/schemas/tlc/1.0.14/commands/M0012.json +51 -0
  346. data/schemas/tlc/1.0.14/commands/M0013.json +51 -0
  347. data/schemas/tlc/1.0.14/commands/M0014.json +69 -0
  348. data/schemas/tlc/1.0.14/commands/M0015.json +69 -0
  349. data/schemas/tlc/1.0.14/commands/M0016.json +51 -0
  350. data/schemas/tlc/1.0.14/commands/M0017.json +51 -0
  351. data/schemas/tlc/1.0.14/commands/M0018.json +69 -0
  352. data/schemas/tlc/1.0.14/commands/M0019.json +87 -0
  353. data/schemas/tlc/1.0.14/commands/M0103.json +72 -0
  354. data/schemas/tlc/1.0.14/commands/M0104.json +141 -0
  355. data/schemas/tlc/1.0.14/commands/command_requests.json +8 -0
  356. data/schemas/tlc/1.0.14/commands/command_responses.json +8 -0
  357. data/schemas/tlc/1.0.14/commands/commands.json +335 -0
  358. data/schemas/tlc/1.0.14/defs/definitions.json +67 -0
  359. data/schemas/tlc/1.0.14/defs/guards.json +24 -0
  360. data/schemas/tlc/1.0.14/rsmp.json +74 -0
  361. data/schemas/tlc/1.0.14/statuses/S0001.json +91 -0
  362. data/schemas/tlc/1.0.14/statuses/S0002.json +36 -0
  363. data/schemas/tlc/1.0.14/statuses/S0003.json +54 -0
  364. data/schemas/tlc/1.0.14/statuses/S0004.json +54 -0
  365. data/schemas/tlc/1.0.14/statuses/S0005.json +36 -0
  366. data/schemas/tlc/1.0.14/statuses/S0006.json +54 -0
  367. data/schemas/tlc/1.0.14/statuses/S0007.json +54 -0
  368. data/schemas/tlc/1.0.14/statuses/S0008.json +54 -0
  369. data/schemas/tlc/1.0.14/statuses/S0009.json +54 -0
  370. data/schemas/tlc/1.0.14/statuses/S0010.json +54 -0
  371. data/schemas/tlc/1.0.14/statuses/S0011.json +54 -0
  372. data/schemas/tlc/1.0.14/statuses/S0012.json +54 -0
  373. data/schemas/tlc/1.0.14/statuses/S0013.json +54 -0
  374. data/schemas/tlc/1.0.14/statuses/S0014.json +36 -0
  375. data/schemas/tlc/1.0.14/statuses/S0015.json +36 -0
  376. data/schemas/tlc/1.0.14/statuses/S0016.json +36 -0
  377. data/schemas/tlc/1.0.14/statuses/S0017.json +36 -0
  378. data/schemas/tlc/1.0.14/statuses/S0018.json +36 -0
  379. data/schemas/tlc/1.0.14/statuses/S0019.json +36 -0
  380. data/schemas/tlc/1.0.14/statuses/S0020.json +54 -0
  381. data/schemas/tlc/1.0.14/statuses/S0021.json +37 -0
  382. data/schemas/tlc/1.0.14/statuses/S0022.json +36 -0
  383. data/schemas/tlc/1.0.14/statuses/S0023.json +37 -0
  384. data/schemas/tlc/1.0.14/statuses/S0024.json +37 -0
  385. data/schemas/tlc/1.0.14/statuses/S0025.json +162 -0
  386. data/schemas/tlc/1.0.14/statuses/S0026.json +36 -0
  387. data/schemas/tlc/1.0.14/statuses/S0027.json +36 -0
  388. data/schemas/tlc/1.0.14/statuses/S0028.json +36 -0
  389. data/schemas/tlc/1.0.14/statuses/S0029.json +36 -0
  390. data/schemas/tlc/1.0.14/statuses/S0091.json +57 -0
  391. data/schemas/tlc/1.0.14/statuses/S0092.json +57 -0
  392. data/schemas/tlc/1.0.14/statuses/S0095.json +36 -0
  393. data/schemas/tlc/1.0.14/statuses/S0096.json +126 -0
  394. data/schemas/tlc/1.0.14/statuses/S0201.json +54 -0
  395. data/schemas/tlc/1.0.14/statuses/S0202.json +54 -0
  396. data/schemas/tlc/1.0.14/statuses/S0203.json +54 -0
  397. data/schemas/tlc/1.0.14/statuses/S0204.json +198 -0
  398. data/schemas/tlc/1.0.14/statuses/S0205.json +54 -0
  399. data/schemas/tlc/1.0.14/statuses/S0206.json +54 -0
  400. data/schemas/tlc/1.0.14/statuses/S0207.json +54 -0
  401. data/schemas/tlc/1.0.14/statuses/S0208.json +198 -0
  402. data/schemas/tlc/1.0.14/statuses/statuses.json +675 -0
  403. data/schemas/tlc/1.0.14/sxl.yaml +1450 -0
  404. data/schemas/tlc/1.0.15/alarms/A0001.json +4 -0
  405. data/schemas/tlc/1.0.15/alarms/A0002.json +4 -0
  406. data/schemas/tlc/1.0.15/alarms/A0003.json +4 -0
  407. data/schemas/tlc/1.0.15/alarms/A0004.json +4 -0
  408. data/schemas/tlc/1.0.15/alarms/A0005.json +4 -0
  409. data/schemas/tlc/1.0.15/alarms/A0006.json +4 -0
  410. data/schemas/tlc/1.0.15/alarms/A0007.json +4 -0
  411. data/schemas/tlc/1.0.15/alarms/A0008.json +30 -0
  412. data/schemas/tlc/1.0.15/alarms/A0009.json +4 -0
  413. data/schemas/tlc/1.0.15/alarms/A0010.json +4 -0
  414. data/schemas/tlc/1.0.15/alarms/A0101.json +4 -0
  415. data/schemas/tlc/1.0.15/alarms/A0201.json +35 -0
  416. data/schemas/tlc/1.0.15/alarms/A0202.json +35 -0
  417. data/schemas/tlc/1.0.15/alarms/A0301.json +92 -0
  418. data/schemas/tlc/1.0.15/alarms/A0302.json +115 -0
  419. data/schemas/tlc/1.0.15/alarms/alarms.json +255 -0
  420. data/schemas/tlc/1.0.15/commands/M0001.json +92 -0
  421. data/schemas/tlc/1.0.15/commands/M0002.json +69 -0
  422. data/schemas/tlc/1.0.15/commands/M0003.json +69 -0
  423. data/schemas/tlc/1.0.15/commands/M0004.json +51 -0
  424. data/schemas/tlc/1.0.15/commands/M0005.json +69 -0
  425. data/schemas/tlc/1.0.15/commands/M0006.json +69 -0
  426. data/schemas/tlc/1.0.15/commands/M0007.json +51 -0
  427. data/schemas/tlc/1.0.15/commands/M0008.json +69 -0
  428. data/schemas/tlc/1.0.15/commands/M0010.json +51 -0
  429. data/schemas/tlc/1.0.15/commands/M0011.json +51 -0
  430. data/schemas/tlc/1.0.15/commands/M0012.json +51 -0
  431. data/schemas/tlc/1.0.15/commands/M0013.json +51 -0
  432. data/schemas/tlc/1.0.15/commands/M0014.json +69 -0
  433. data/schemas/tlc/1.0.15/commands/M0015.json +69 -0
  434. data/schemas/tlc/1.0.15/commands/M0016.json +51 -0
  435. data/schemas/tlc/1.0.15/commands/M0017.json +51 -0
  436. data/schemas/tlc/1.0.15/commands/M0018.json +69 -0
  437. data/schemas/tlc/1.0.15/commands/M0019.json +87 -0
  438. data/schemas/tlc/1.0.15/commands/M0020.json +87 -0
  439. data/schemas/tlc/1.0.15/commands/M0021.json +51 -0
  440. data/schemas/tlc/1.0.15/commands/M0103.json +72 -0
  441. data/schemas/tlc/1.0.15/commands/M0104.json +141 -0
  442. data/schemas/tlc/1.0.15/commands/command_requests.json +8 -0
  443. data/schemas/tlc/1.0.15/commands/command_responses.json +8 -0
  444. data/schemas/tlc/1.0.15/commands/commands.json +367 -0
  445. data/schemas/tlc/1.0.15/defs/definitions.json +67 -0
  446. data/schemas/tlc/1.0.15/defs/guards.json +24 -0
  447. data/schemas/tlc/1.0.15/rsmp.json +74 -0
  448. data/schemas/tlc/1.0.15/statuses/S0001.json +91 -0
  449. data/schemas/tlc/1.0.15/statuses/S0002.json +36 -0
  450. data/schemas/tlc/1.0.15/statuses/S0003.json +54 -0
  451. data/schemas/tlc/1.0.15/statuses/S0004.json +54 -0
  452. data/schemas/tlc/1.0.15/statuses/S0005.json +36 -0
  453. data/schemas/tlc/1.0.15/statuses/S0006.json +54 -0
  454. data/schemas/tlc/1.0.15/statuses/S0007.json +54 -0
  455. data/schemas/tlc/1.0.15/statuses/S0008.json +54 -0
  456. data/schemas/tlc/1.0.15/statuses/S0009.json +54 -0
  457. data/schemas/tlc/1.0.15/statuses/S0010.json +54 -0
  458. data/schemas/tlc/1.0.15/statuses/S0011.json +54 -0
  459. data/schemas/tlc/1.0.15/statuses/S0012.json +54 -0
  460. data/schemas/tlc/1.0.15/statuses/S0013.json +54 -0
  461. data/schemas/tlc/1.0.15/statuses/S0014.json +36 -0
  462. data/schemas/tlc/1.0.15/statuses/S0015.json +36 -0
  463. data/schemas/tlc/1.0.15/statuses/S0016.json +36 -0
  464. data/schemas/tlc/1.0.15/statuses/S0017.json +36 -0
  465. data/schemas/tlc/1.0.15/statuses/S0018.json +36 -0
  466. data/schemas/tlc/1.0.15/statuses/S0019.json +36 -0
  467. data/schemas/tlc/1.0.15/statuses/S0020.json +54 -0
  468. data/schemas/tlc/1.0.15/statuses/S0021.json +37 -0
  469. data/schemas/tlc/1.0.15/statuses/S0022.json +36 -0
  470. data/schemas/tlc/1.0.15/statuses/S0023.json +37 -0
  471. data/schemas/tlc/1.0.15/statuses/S0024.json +37 -0
  472. data/schemas/tlc/1.0.15/statuses/S0025.json +162 -0
  473. data/schemas/tlc/1.0.15/statuses/S0026.json +36 -0
  474. data/schemas/tlc/1.0.15/statuses/S0027.json +36 -0
  475. data/schemas/tlc/1.0.15/statuses/S0028.json +36 -0
  476. data/schemas/tlc/1.0.15/statuses/S0029.json +36 -0
  477. data/schemas/tlc/1.0.15/statuses/S0030.json +36 -0
  478. data/schemas/tlc/1.0.15/statuses/S0031.json +36 -0
  479. data/schemas/tlc/1.0.15/statuses/S0091.json +57 -0
  480. data/schemas/tlc/1.0.15/statuses/S0092.json +57 -0
  481. data/schemas/tlc/1.0.15/statuses/S0095.json +36 -0
  482. data/schemas/tlc/1.0.15/statuses/S0096.json +126 -0
  483. data/schemas/tlc/1.0.15/statuses/S0097.json +54 -0
  484. data/schemas/tlc/1.0.15/statuses/S0098.json +72 -0
  485. data/schemas/tlc/1.0.15/statuses/S0201.json +54 -0
  486. data/schemas/tlc/1.0.15/statuses/S0202.json +54 -0
  487. data/schemas/tlc/1.0.15/statuses/S0203.json +54 -0
  488. data/schemas/tlc/1.0.15/statuses/S0204.json +198 -0
  489. data/schemas/tlc/1.0.15/statuses/S0205.json +54 -0
  490. data/schemas/tlc/1.0.15/statuses/S0206.json +54 -0
  491. data/schemas/tlc/1.0.15/statuses/S0207.json +54 -0
  492. data/schemas/tlc/1.0.15/statuses/S0208.json +198 -0
  493. data/schemas/tlc/1.0.15/statuses/statuses.json +739 -0
  494. data/schemas/tlc/1.0.15/sxl.yaml +1589 -0
  495. data/schemas/tlc/1.0.7/alarms/A0001.json +4 -0
  496. data/schemas/tlc/1.0.7/alarms/A0002.json +4 -0
  497. data/schemas/tlc/1.0.7/alarms/A0003.json +4 -0
  498. data/schemas/tlc/1.0.7/alarms/A0004.json +4 -0
  499. data/schemas/tlc/1.0.7/alarms/A0005.json +4 -0
  500. data/schemas/tlc/1.0.7/alarms/A0006.json +4 -0
  501. data/schemas/tlc/1.0.7/alarms/A0007.json +4 -0
  502. data/schemas/tlc/1.0.7/alarms/A0008.json +30 -0
  503. data/schemas/tlc/1.0.7/alarms/A0009.json +4 -0
  504. data/schemas/tlc/1.0.7/alarms/A0101.json +4 -0
  505. data/schemas/tlc/1.0.7/alarms/A0201.json +35 -0
  506. data/schemas/tlc/1.0.7/alarms/A0202.json +35 -0
  507. data/schemas/tlc/1.0.7/alarms/A0301.json +92 -0
  508. data/schemas/tlc/1.0.7/alarms/A0302.json +115 -0
  509. data/schemas/tlc/1.0.7/alarms/alarms.json +239 -0
  510. data/schemas/tlc/1.0.7/commands/M0001.json +92 -0
  511. data/schemas/tlc/1.0.7/commands/M0002.json +69 -0
  512. data/schemas/tlc/1.0.7/commands/M0003.json +69 -0
  513. data/schemas/tlc/1.0.7/commands/M0004.json +51 -0
  514. data/schemas/tlc/1.0.7/commands/M0005.json +69 -0
  515. data/schemas/tlc/1.0.7/commands/M0006.json +69 -0
  516. data/schemas/tlc/1.0.7/commands/M0007.json +51 -0
  517. data/schemas/tlc/1.0.7/commands/M0008.json +69 -0
  518. data/schemas/tlc/1.0.7/commands/M0010.json +51 -0
  519. data/schemas/tlc/1.0.7/commands/M0011.json +51 -0
  520. data/schemas/tlc/1.0.7/commands/M0019.json +87 -0
  521. data/schemas/tlc/1.0.7/commands/M0103.json +72 -0
  522. data/schemas/tlc/1.0.7/commands/M0104.json +141 -0
  523. data/schemas/tlc/1.0.7/commands/command_requests.json +8 -0
  524. data/schemas/tlc/1.0.7/commands/command_responses.json +8 -0
  525. data/schemas/tlc/1.0.7/commands/commands.json +223 -0
  526. data/schemas/tlc/1.0.7/defs/definitions.json +67 -0
  527. data/schemas/tlc/1.0.7/defs/guards.json +24 -0
  528. data/schemas/tlc/1.0.7/rsmp.json +74 -0
  529. data/schemas/tlc/1.0.7/statuses/S0001.json +91 -0
  530. data/schemas/tlc/1.0.7/statuses/S0002.json +36 -0
  531. data/schemas/tlc/1.0.7/statuses/S0003.json +54 -0
  532. data/schemas/tlc/1.0.7/statuses/S0004.json +54 -0
  533. data/schemas/tlc/1.0.7/statuses/S0005.json +36 -0
  534. data/schemas/tlc/1.0.7/statuses/S0006.json +54 -0
  535. data/schemas/tlc/1.0.7/statuses/S0007.json +54 -0
  536. data/schemas/tlc/1.0.7/statuses/S0008.json +54 -0
  537. data/schemas/tlc/1.0.7/statuses/S0009.json +54 -0
  538. data/schemas/tlc/1.0.7/statuses/S0010.json +54 -0
  539. data/schemas/tlc/1.0.7/statuses/S0011.json +54 -0
  540. data/schemas/tlc/1.0.7/statuses/S0012.json +54 -0
  541. data/schemas/tlc/1.0.7/statuses/S0013.json +54 -0
  542. data/schemas/tlc/1.0.7/statuses/S0014.json +36 -0
  543. data/schemas/tlc/1.0.7/statuses/S0015.json +36 -0
  544. data/schemas/tlc/1.0.7/statuses/S0016.json +36 -0
  545. data/schemas/tlc/1.0.7/statuses/S0017.json +36 -0
  546. data/schemas/tlc/1.0.7/statuses/S0018.json +36 -0
  547. data/schemas/tlc/1.0.7/statuses/S0019.json +36 -0
  548. data/schemas/tlc/1.0.7/statuses/S0020.json +54 -0
  549. data/schemas/tlc/1.0.7/statuses/S0021.json +37 -0
  550. data/schemas/tlc/1.0.7/statuses/S0025.json +162 -0
  551. data/schemas/tlc/1.0.7/statuses/S0091.json +57 -0
  552. data/schemas/tlc/1.0.7/statuses/S0092.json +57 -0
  553. data/schemas/tlc/1.0.7/statuses/S0095.json +36 -0
  554. data/schemas/tlc/1.0.7/statuses/S0096.json +126 -0
  555. data/schemas/tlc/1.0.7/statuses/S0201.json +54 -0
  556. data/schemas/tlc/1.0.7/statuses/S0202.json +54 -0
  557. data/schemas/tlc/1.0.7/statuses/S0203.json +54 -0
  558. data/schemas/tlc/1.0.7/statuses/S0204.json +198 -0
  559. data/schemas/tlc/1.0.7/statuses/statuses.json +499 -0
  560. data/schemas/tlc/1.0.7/sxl.yaml +981 -0
  561. data/schemas/tlc/1.0.8/alarms/A0001.json +4 -0
  562. data/schemas/tlc/1.0.8/alarms/A0002.json +4 -0
  563. data/schemas/tlc/1.0.8/alarms/A0003.json +4 -0
  564. data/schemas/tlc/1.0.8/alarms/A0004.json +4 -0
  565. data/schemas/tlc/1.0.8/alarms/A0005.json +4 -0
  566. data/schemas/tlc/1.0.8/alarms/A0006.json +4 -0
  567. data/schemas/tlc/1.0.8/alarms/A0007.json +4 -0
  568. data/schemas/tlc/1.0.8/alarms/A0008.json +30 -0
  569. data/schemas/tlc/1.0.8/alarms/A0009.json +4 -0
  570. data/schemas/tlc/1.0.8/alarms/A0101.json +4 -0
  571. data/schemas/tlc/1.0.8/alarms/A0201.json +35 -0
  572. data/schemas/tlc/1.0.8/alarms/A0202.json +35 -0
  573. data/schemas/tlc/1.0.8/alarms/A0301.json +92 -0
  574. data/schemas/tlc/1.0.8/alarms/A0302.json +115 -0
  575. data/schemas/tlc/1.0.8/alarms/alarms.json +239 -0
  576. data/schemas/tlc/1.0.8/commands/M0001.json +92 -0
  577. data/schemas/tlc/1.0.8/commands/M0002.json +69 -0
  578. data/schemas/tlc/1.0.8/commands/M0003.json +69 -0
  579. data/schemas/tlc/1.0.8/commands/M0004.json +51 -0
  580. data/schemas/tlc/1.0.8/commands/M0005.json +69 -0
  581. data/schemas/tlc/1.0.8/commands/M0006.json +69 -0
  582. data/schemas/tlc/1.0.8/commands/M0007.json +51 -0
  583. data/schemas/tlc/1.0.8/commands/M0008.json +69 -0
  584. data/schemas/tlc/1.0.8/commands/M0010.json +51 -0
  585. data/schemas/tlc/1.0.8/commands/M0011.json +51 -0
  586. data/schemas/tlc/1.0.8/commands/M0012.json +51 -0
  587. data/schemas/tlc/1.0.8/commands/M0013.json +51 -0
  588. data/schemas/tlc/1.0.8/commands/M0019.json +87 -0
  589. data/schemas/tlc/1.0.8/commands/M0103.json +72 -0
  590. data/schemas/tlc/1.0.8/commands/M0104.json +141 -0
  591. data/schemas/tlc/1.0.8/commands/command_requests.json +8 -0
  592. data/schemas/tlc/1.0.8/commands/command_responses.json +8 -0
  593. data/schemas/tlc/1.0.8/commands/commands.json +255 -0
  594. data/schemas/tlc/1.0.8/defs/definitions.json +67 -0
  595. data/schemas/tlc/1.0.8/defs/guards.json +24 -0
  596. data/schemas/tlc/1.0.8/rsmp.json +74 -0
  597. data/schemas/tlc/1.0.8/statuses/S0001.json +91 -0
  598. data/schemas/tlc/1.0.8/statuses/S0002.json +36 -0
  599. data/schemas/tlc/1.0.8/statuses/S0003.json +54 -0
  600. data/schemas/tlc/1.0.8/statuses/S0004.json +54 -0
  601. data/schemas/tlc/1.0.8/statuses/S0005.json +36 -0
  602. data/schemas/tlc/1.0.8/statuses/S0006.json +54 -0
  603. data/schemas/tlc/1.0.8/statuses/S0007.json +54 -0
  604. data/schemas/tlc/1.0.8/statuses/S0008.json +54 -0
  605. data/schemas/tlc/1.0.8/statuses/S0009.json +54 -0
  606. data/schemas/tlc/1.0.8/statuses/S0010.json +54 -0
  607. data/schemas/tlc/1.0.8/statuses/S0011.json +54 -0
  608. data/schemas/tlc/1.0.8/statuses/S0012.json +54 -0
  609. data/schemas/tlc/1.0.8/statuses/S0013.json +54 -0
  610. data/schemas/tlc/1.0.8/statuses/S0014.json +36 -0
  611. data/schemas/tlc/1.0.8/statuses/S0015.json +36 -0
  612. data/schemas/tlc/1.0.8/statuses/S0016.json +36 -0
  613. data/schemas/tlc/1.0.8/statuses/S0017.json +36 -0
  614. data/schemas/tlc/1.0.8/statuses/S0018.json +36 -0
  615. data/schemas/tlc/1.0.8/statuses/S0019.json +36 -0
  616. data/schemas/tlc/1.0.8/statuses/S0020.json +54 -0
  617. data/schemas/tlc/1.0.8/statuses/S0021.json +37 -0
  618. data/schemas/tlc/1.0.8/statuses/S0025.json +181 -0
  619. data/schemas/tlc/1.0.8/statuses/S0091.json +57 -0
  620. data/schemas/tlc/1.0.8/statuses/S0092.json +57 -0
  621. data/schemas/tlc/1.0.8/statuses/S0095.json +36 -0
  622. data/schemas/tlc/1.0.8/statuses/S0096.json +126 -0
  623. data/schemas/tlc/1.0.8/statuses/S0201.json +54 -0
  624. data/schemas/tlc/1.0.8/statuses/S0202.json +54 -0
  625. data/schemas/tlc/1.0.8/statuses/S0203.json +54 -0
  626. data/schemas/tlc/1.0.8/statuses/S0204.json +198 -0
  627. data/schemas/tlc/1.0.8/statuses/statuses.json +483 -0
  628. data/schemas/tlc/1.0.8/sxl.yaml +1010 -0
  629. data/schemas/tlc/1.0.9/alarms/A0001.json +4 -0
  630. data/schemas/tlc/1.0.9/alarms/A0002.json +4 -0
  631. data/schemas/tlc/1.0.9/alarms/A0003.json +4 -0
  632. data/schemas/tlc/1.0.9/alarms/A0004.json +4 -0
  633. data/schemas/tlc/1.0.9/alarms/A0005.json +4 -0
  634. data/schemas/tlc/1.0.9/alarms/A0006.json +4 -0
  635. data/schemas/tlc/1.0.9/alarms/A0007.json +4 -0
  636. data/schemas/tlc/1.0.9/alarms/A0008.json +30 -0
  637. data/schemas/tlc/1.0.9/alarms/A0009.json +4 -0
  638. data/schemas/tlc/1.0.9/alarms/A0101.json +4 -0
  639. data/schemas/tlc/1.0.9/alarms/A0201.json +35 -0
  640. data/schemas/tlc/1.0.9/alarms/A0202.json +35 -0
  641. data/schemas/tlc/1.0.9/alarms/A0301.json +92 -0
  642. data/schemas/tlc/1.0.9/alarms/A0302.json +115 -0
  643. data/schemas/tlc/1.0.9/alarms/alarms.json +239 -0
  644. data/schemas/tlc/1.0.9/commands/M0001.json +92 -0
  645. data/schemas/tlc/1.0.9/commands/M0002.json +69 -0
  646. data/schemas/tlc/1.0.9/commands/M0003.json +69 -0
  647. data/schemas/tlc/1.0.9/commands/M0004.json +51 -0
  648. data/schemas/tlc/1.0.9/commands/M0005.json +69 -0
  649. data/schemas/tlc/1.0.9/commands/M0006.json +69 -0
  650. data/schemas/tlc/1.0.9/commands/M0007.json +51 -0
  651. data/schemas/tlc/1.0.9/commands/M0008.json +69 -0
  652. data/schemas/tlc/1.0.9/commands/M0010.json +51 -0
  653. data/schemas/tlc/1.0.9/commands/M0011.json +51 -0
  654. data/schemas/tlc/1.0.9/commands/M0012.json +51 -0
  655. data/schemas/tlc/1.0.9/commands/M0013.json +51 -0
  656. data/schemas/tlc/1.0.9/commands/M0019.json +87 -0
  657. data/schemas/tlc/1.0.9/commands/M0103.json +72 -0
  658. data/schemas/tlc/1.0.9/commands/M0104.json +141 -0
  659. data/schemas/tlc/1.0.9/commands/command_requests.json +8 -0
  660. data/schemas/tlc/1.0.9/commands/command_responses.json +8 -0
  661. data/schemas/tlc/1.0.9/commands/commands.json +255 -0
  662. data/schemas/tlc/1.0.9/defs/definitions.json +67 -0
  663. data/schemas/tlc/1.0.9/defs/guards.json +24 -0
  664. data/schemas/tlc/1.0.9/rsmp.json +74 -0
  665. data/schemas/tlc/1.0.9/statuses/S0001.json +91 -0
  666. data/schemas/tlc/1.0.9/statuses/S0002.json +36 -0
  667. data/schemas/tlc/1.0.9/statuses/S0003.json +54 -0
  668. data/schemas/tlc/1.0.9/statuses/S0004.json +54 -0
  669. data/schemas/tlc/1.0.9/statuses/S0005.json +36 -0
  670. data/schemas/tlc/1.0.9/statuses/S0006.json +54 -0
  671. data/schemas/tlc/1.0.9/statuses/S0007.json +54 -0
  672. data/schemas/tlc/1.0.9/statuses/S0008.json +54 -0
  673. data/schemas/tlc/1.0.9/statuses/S0009.json +54 -0
  674. data/schemas/tlc/1.0.9/statuses/S0010.json +54 -0
  675. data/schemas/tlc/1.0.9/statuses/S0011.json +54 -0
  676. data/schemas/tlc/1.0.9/statuses/S0012.json +54 -0
  677. data/schemas/tlc/1.0.9/statuses/S0013.json +54 -0
  678. data/schemas/tlc/1.0.9/statuses/S0014.json +36 -0
  679. data/schemas/tlc/1.0.9/statuses/S0015.json +36 -0
  680. data/schemas/tlc/1.0.9/statuses/S0016.json +36 -0
  681. data/schemas/tlc/1.0.9/statuses/S0017.json +36 -0
  682. data/schemas/tlc/1.0.9/statuses/S0018.json +36 -0
  683. data/schemas/tlc/1.0.9/statuses/S0019.json +36 -0
  684. data/schemas/tlc/1.0.9/statuses/S0020.json +54 -0
  685. data/schemas/tlc/1.0.9/statuses/S0021.json +37 -0
  686. data/schemas/tlc/1.0.9/statuses/S0025.json +181 -0
  687. data/schemas/tlc/1.0.9/statuses/S0091.json +57 -0
  688. data/schemas/tlc/1.0.9/statuses/S0092.json +57 -0
  689. data/schemas/tlc/1.0.9/statuses/S0095.json +36 -0
  690. data/schemas/tlc/1.0.9/statuses/S0096.json +126 -0
  691. data/schemas/tlc/1.0.9/statuses/S0201.json +54 -0
  692. data/schemas/tlc/1.0.9/statuses/S0202.json +54 -0
  693. data/schemas/tlc/1.0.9/statuses/S0203.json +54 -0
  694. data/schemas/tlc/1.0.9/statuses/S0204.json +198 -0
  695. data/schemas/tlc/1.0.9/statuses/statuses.json +483 -0
  696. data/schemas/tlc/1.0.9/sxl.yaml +1010 -0
  697. data/schemas/tlc/1.1.0/alarms/A0001.json +4 -0
  698. data/schemas/tlc/1.1.0/alarms/A0002.json +4 -0
  699. data/schemas/tlc/1.1.0/alarms/A0003.json +4 -0
  700. data/schemas/tlc/1.1.0/alarms/A0004.json +4 -0
  701. data/schemas/tlc/1.1.0/alarms/A0005.json +4 -0
  702. data/schemas/tlc/1.1.0/alarms/A0006.json +4 -0
  703. data/schemas/tlc/1.1.0/alarms/A0007.json +34 -0
  704. data/schemas/tlc/1.1.0/alarms/A0008.json +30 -0
  705. data/schemas/tlc/1.1.0/alarms/A0009.json +4 -0
  706. data/schemas/tlc/1.1.0/alarms/A0010.json +4 -0
  707. data/schemas/tlc/1.1.0/alarms/A0101.json +4 -0
  708. data/schemas/tlc/1.1.0/alarms/A0201.json +35 -0
  709. data/schemas/tlc/1.1.0/alarms/A0202.json +35 -0
  710. data/schemas/tlc/1.1.0/alarms/A0301.json +92 -0
  711. data/schemas/tlc/1.1.0/alarms/A0302.json +115 -0
  712. data/schemas/tlc/1.1.0/alarms/A0303.json +92 -0
  713. data/schemas/tlc/1.1.0/alarms/A0304.json +115 -0
  714. data/schemas/tlc/1.1.0/alarms/alarms.json +287 -0
  715. data/schemas/tlc/1.1.0/commands/M0001.json +92 -0
  716. data/schemas/tlc/1.1.0/commands/M0002.json +69 -0
  717. data/schemas/tlc/1.1.0/commands/M0003.json +69 -0
  718. data/schemas/tlc/1.1.0/commands/M0004.json +51 -0
  719. data/schemas/tlc/1.1.0/commands/M0005.json +69 -0
  720. data/schemas/tlc/1.1.0/commands/M0006.json +69 -0
  721. data/schemas/tlc/1.1.0/commands/M0007.json +51 -0
  722. data/schemas/tlc/1.1.0/commands/M0008.json +69 -0
  723. data/schemas/tlc/1.1.0/commands/M0010.json +51 -0
  724. data/schemas/tlc/1.1.0/commands/M0011.json +51 -0
  725. data/schemas/tlc/1.1.0/commands/M0012.json +51 -0
  726. data/schemas/tlc/1.1.0/commands/M0013.json +51 -0
  727. data/schemas/tlc/1.1.0/commands/M0014.json +69 -0
  728. data/schemas/tlc/1.1.0/commands/M0015.json +69 -0
  729. data/schemas/tlc/1.1.0/commands/M0016.json +51 -0
  730. data/schemas/tlc/1.1.0/commands/M0017.json +51 -0
  731. data/schemas/tlc/1.1.0/commands/M0018.json +69 -0
  732. data/schemas/tlc/1.1.0/commands/M0019.json +87 -0
  733. data/schemas/tlc/1.1.0/commands/M0020.json +87 -0
  734. data/schemas/tlc/1.1.0/commands/M0021.json +51 -0
  735. data/schemas/tlc/1.1.0/commands/M0022.json +249 -0
  736. data/schemas/tlc/1.1.0/commands/M0023.json +51 -0
  737. data/schemas/tlc/1.1.0/commands/M0103.json +72 -0
  738. data/schemas/tlc/1.1.0/commands/M0104.json +141 -0
  739. data/schemas/tlc/1.1.0/commands/command_requests.json +8 -0
  740. data/schemas/tlc/1.1.0/commands/command_responses.json +8 -0
  741. data/schemas/tlc/1.1.0/commands/commands.json +399 -0
  742. data/schemas/tlc/1.1.0/defs/definitions.json +67 -0
  743. data/schemas/tlc/1.1.0/defs/guards.json +24 -0
  744. data/schemas/tlc/1.1.0/rsmp.json +74 -0
  745. data/schemas/tlc/1.1.0/statuses/S0001.json +91 -0
  746. data/schemas/tlc/1.1.0/statuses/S0002.json +36 -0
  747. data/schemas/tlc/1.1.0/statuses/S0003.json +54 -0
  748. data/schemas/tlc/1.1.0/statuses/S0004.json +54 -0
  749. data/schemas/tlc/1.1.0/statuses/S0005.json +36 -0
  750. data/schemas/tlc/1.1.0/statuses/S0006.json +54 -0
  751. data/schemas/tlc/1.1.0/statuses/S0007.json +73 -0
  752. data/schemas/tlc/1.1.0/statuses/S0008.json +73 -0
  753. data/schemas/tlc/1.1.0/statuses/S0009.json +73 -0
  754. data/schemas/tlc/1.1.0/statuses/S0010.json +73 -0
  755. data/schemas/tlc/1.1.0/statuses/S0011.json +73 -0
  756. data/schemas/tlc/1.1.0/statuses/S0012.json +73 -0
  757. data/schemas/tlc/1.1.0/statuses/S0013.json +54 -0
  758. data/schemas/tlc/1.1.0/statuses/S0014.json +62 -0
  759. data/schemas/tlc/1.1.0/statuses/S0015.json +62 -0
  760. data/schemas/tlc/1.1.0/statuses/S0016.json +36 -0
  761. data/schemas/tlc/1.1.0/statuses/S0017.json +36 -0
  762. data/schemas/tlc/1.1.0/statuses/S0018.json +36 -0
  763. data/schemas/tlc/1.1.0/statuses/S0019.json +36 -0
  764. data/schemas/tlc/1.1.0/statuses/S0020.json +54 -0
  765. data/schemas/tlc/1.1.0/statuses/S0021.json +37 -0
  766. data/schemas/tlc/1.1.0/statuses/S0022.json +36 -0
  767. data/schemas/tlc/1.1.0/statuses/S0023.json +37 -0
  768. data/schemas/tlc/1.1.0/statuses/S0024.json +37 -0
  769. data/schemas/tlc/1.1.0/statuses/S0025.json +162 -0
  770. data/schemas/tlc/1.1.0/statuses/S0026.json +36 -0
  771. data/schemas/tlc/1.1.0/statuses/S0027.json +36 -0
  772. data/schemas/tlc/1.1.0/statuses/S0028.json +36 -0
  773. data/schemas/tlc/1.1.0/statuses/S0029.json +36 -0
  774. data/schemas/tlc/1.1.0/statuses/S0030.json +36 -0
  775. data/schemas/tlc/1.1.0/statuses/S0031.json +36 -0
  776. data/schemas/tlc/1.1.0/statuses/S0032.json +73 -0
  777. data/schemas/tlc/1.1.0/statuses/S0033.json +77 -0
  778. data/schemas/tlc/1.1.0/statuses/S0034.json +36 -0
  779. data/schemas/tlc/1.1.0/statuses/S0091.json +40 -0
  780. data/schemas/tlc/1.1.0/statuses/S0092.json +40 -0
  781. data/schemas/tlc/1.1.0/statuses/S0095.json +36 -0
  782. data/schemas/tlc/1.1.0/statuses/S0096.json +126 -0
  783. data/schemas/tlc/1.1.0/statuses/S0097.json +54 -0
  784. data/schemas/tlc/1.1.0/statuses/S0098.json +72 -0
  785. data/schemas/tlc/1.1.0/statuses/S0201.json +54 -0
  786. data/schemas/tlc/1.1.0/statuses/S0202.json +54 -0
  787. data/schemas/tlc/1.1.0/statuses/S0203.json +54 -0
  788. data/schemas/tlc/1.1.0/statuses/S0204.json +198 -0
  789. data/schemas/tlc/1.1.0/statuses/S0205.json +54 -0
  790. data/schemas/tlc/1.1.0/statuses/S0206.json +54 -0
  791. data/schemas/tlc/1.1.0/statuses/S0207.json +54 -0
  792. data/schemas/tlc/1.1.0/statuses/S0208.json +198 -0
  793. data/schemas/tlc/1.1.0/statuses/statuses.json +787 -0
  794. data/schemas/tlc/1.1.0/sxl.yaml +2106 -0
  795. data/schemas/tlc/1.2.0/alarms/A0001.json +4 -0
  796. data/schemas/tlc/1.2.0/alarms/A0002.json +4 -0
  797. data/schemas/tlc/1.2.0/alarms/A0003.json +4 -0
  798. data/schemas/tlc/1.2.0/alarms/A0004.json +4 -0
  799. data/schemas/tlc/1.2.0/alarms/A0005.json +4 -0
  800. data/schemas/tlc/1.2.0/alarms/A0006.json +4 -0
  801. data/schemas/tlc/1.2.0/alarms/A0007.json +34 -0
  802. data/schemas/tlc/1.2.0/alarms/A0008.json +30 -0
  803. data/schemas/tlc/1.2.0/alarms/A0009.json +4 -0
  804. data/schemas/tlc/1.2.0/alarms/A0010.json +4 -0
  805. data/schemas/tlc/1.2.0/alarms/A0101.json +4 -0
  806. data/schemas/tlc/1.2.0/alarms/A0201.json +35 -0
  807. data/schemas/tlc/1.2.0/alarms/A0202.json +35 -0
  808. data/schemas/tlc/1.2.0/alarms/A0301.json +92 -0
  809. data/schemas/tlc/1.2.0/alarms/A0302.json +115 -0
  810. data/schemas/tlc/1.2.0/alarms/A0303.json +92 -0
  811. data/schemas/tlc/1.2.0/alarms/A0304.json +115 -0
  812. data/schemas/tlc/1.2.0/alarms/alarms.json +287 -0
  813. data/schemas/tlc/1.2.0/commands/M0001.json +92 -0
  814. data/schemas/tlc/1.2.0/commands/M0002.json +69 -0
  815. data/schemas/tlc/1.2.0/commands/M0003.json +69 -0
  816. data/schemas/tlc/1.2.0/commands/M0004.json +51 -0
  817. data/schemas/tlc/1.2.0/commands/M0005.json +69 -0
  818. data/schemas/tlc/1.2.0/commands/M0006.json +69 -0
  819. data/schemas/tlc/1.2.0/commands/M0007.json +51 -0
  820. data/schemas/tlc/1.2.0/commands/M0008.json +69 -0
  821. data/schemas/tlc/1.2.0/commands/M0010.json +51 -0
  822. data/schemas/tlc/1.2.0/commands/M0011.json +51 -0
  823. data/schemas/tlc/1.2.0/commands/M0012.json +51 -0
  824. data/schemas/tlc/1.2.0/commands/M0013.json +51 -0
  825. data/schemas/tlc/1.2.0/commands/M0014.json +69 -0
  826. data/schemas/tlc/1.2.0/commands/M0015.json +69 -0
  827. data/schemas/tlc/1.2.0/commands/M0016.json +51 -0
  828. data/schemas/tlc/1.2.0/commands/M0017.json +51 -0
  829. data/schemas/tlc/1.2.0/commands/M0018.json +69 -0
  830. data/schemas/tlc/1.2.0/commands/M0019.json +87 -0
  831. data/schemas/tlc/1.2.0/commands/M0020.json +87 -0
  832. data/schemas/tlc/1.2.0/commands/M0021.json +51 -0
  833. data/schemas/tlc/1.2.0/commands/M0022.json +249 -0
  834. data/schemas/tlc/1.2.0/commands/M0023.json +51 -0
  835. data/schemas/tlc/1.2.0/commands/M0103.json +72 -0
  836. data/schemas/tlc/1.2.0/commands/M0104.json +141 -0
  837. data/schemas/tlc/1.2.0/commands/command_requests.json +8 -0
  838. data/schemas/tlc/1.2.0/commands/command_responses.json +8 -0
  839. data/schemas/tlc/1.2.0/commands/commands.json +399 -0
  840. data/schemas/tlc/1.2.0/defs/definitions.json +67 -0
  841. data/schemas/tlc/1.2.0/defs/guards.json +24 -0
  842. data/schemas/tlc/1.2.0/rsmp.json +74 -0
  843. data/schemas/tlc/1.2.0/statuses/S0001.json +91 -0
  844. data/schemas/tlc/1.2.0/statuses/S0002.json +36 -0
  845. data/schemas/tlc/1.2.0/statuses/S0003.json +36 -0
  846. data/schemas/tlc/1.2.0/statuses/S0004.json +36 -0
  847. data/schemas/tlc/1.2.0/statuses/S0005.json +72 -0
  848. data/schemas/tlc/1.2.0/statuses/S0006.json +54 -0
  849. data/schemas/tlc/1.2.0/statuses/S0007.json +73 -0
  850. data/schemas/tlc/1.2.0/statuses/S0008.json +73 -0
  851. data/schemas/tlc/1.2.0/statuses/S0009.json +73 -0
  852. data/schemas/tlc/1.2.0/statuses/S0010.json +73 -0
  853. data/schemas/tlc/1.2.0/statuses/S0011.json +73 -0
  854. data/schemas/tlc/1.2.0/statuses/S0012.json +73 -0
  855. data/schemas/tlc/1.2.0/statuses/S0013.json +54 -0
  856. data/schemas/tlc/1.2.0/statuses/S0014.json +62 -0
  857. data/schemas/tlc/1.2.0/statuses/S0015.json +62 -0
  858. data/schemas/tlc/1.2.0/statuses/S0016.json +36 -0
  859. data/schemas/tlc/1.2.0/statuses/S0017.json +36 -0
  860. data/schemas/tlc/1.2.0/statuses/S0018.json +61 -0
  861. data/schemas/tlc/1.2.0/statuses/S0019.json +36 -0
  862. data/schemas/tlc/1.2.0/statuses/S0020.json +54 -0
  863. data/schemas/tlc/1.2.0/statuses/S0021.json +37 -0
  864. data/schemas/tlc/1.2.0/statuses/S0022.json +36 -0
  865. data/schemas/tlc/1.2.0/statuses/S0023.json +37 -0
  866. data/schemas/tlc/1.2.0/statuses/S0024.json +37 -0
  867. data/schemas/tlc/1.2.0/statuses/S0025.json +162 -0
  868. data/schemas/tlc/1.2.0/statuses/S0026.json +36 -0
  869. data/schemas/tlc/1.2.0/statuses/S0027.json +36 -0
  870. data/schemas/tlc/1.2.0/statuses/S0028.json +36 -0
  871. data/schemas/tlc/1.2.0/statuses/S0029.json +36 -0
  872. data/schemas/tlc/1.2.0/statuses/S0030.json +36 -0
  873. data/schemas/tlc/1.2.0/statuses/S0031.json +36 -0
  874. data/schemas/tlc/1.2.0/statuses/S0032.json +73 -0
  875. data/schemas/tlc/1.2.0/statuses/S0033.json +77 -0
  876. data/schemas/tlc/1.2.0/statuses/S0034.json +36 -0
  877. data/schemas/tlc/1.2.0/statuses/S0035.json +49 -0
  878. data/schemas/tlc/1.2.0/statuses/S0091.json +40 -0
  879. data/schemas/tlc/1.2.0/statuses/S0092.json +40 -0
  880. data/schemas/tlc/1.2.0/statuses/S0095.json +36 -0
  881. data/schemas/tlc/1.2.0/statuses/S0096.json +126 -0
  882. data/schemas/tlc/1.2.0/statuses/S0097.json +54 -0
  883. data/schemas/tlc/1.2.0/statuses/S0098.json +72 -0
  884. data/schemas/tlc/1.2.0/statuses/S0201.json +54 -0
  885. data/schemas/tlc/1.2.0/statuses/S0202.json +54 -0
  886. data/schemas/tlc/1.2.0/statuses/S0203.json +54 -0
  887. data/schemas/tlc/1.2.0/statuses/S0204.json +198 -0
  888. data/schemas/tlc/1.2.0/statuses/S0205.json +54 -0
  889. data/schemas/tlc/1.2.0/statuses/S0206.json +54 -0
  890. data/schemas/tlc/1.2.0/statuses/S0207.json +54 -0
  891. data/schemas/tlc/1.2.0/statuses/S0208.json +198 -0
  892. data/schemas/tlc/1.2.0/statuses/statuses.json +787 -0
  893. data/schemas/tlc/1.2.0/sxl.yaml +2082 -0
  894. data/schemas/tlc/1.2.1/alarms/A0001.json +4 -0
  895. data/schemas/tlc/1.2.1/alarms/A0002.json +4 -0
  896. data/schemas/tlc/1.2.1/alarms/A0003.json +4 -0
  897. data/schemas/tlc/1.2.1/alarms/A0004.json +4 -0
  898. data/schemas/tlc/1.2.1/alarms/A0005.json +4 -0
  899. data/schemas/tlc/1.2.1/alarms/A0006.json +4 -0
  900. data/schemas/tlc/1.2.1/alarms/A0007.json +34 -0
  901. data/schemas/tlc/1.2.1/alarms/A0008.json +30 -0
  902. data/schemas/tlc/1.2.1/alarms/A0009.json +4 -0
  903. data/schemas/tlc/1.2.1/alarms/A0010.json +4 -0
  904. data/schemas/tlc/1.2.1/alarms/A0101.json +4 -0
  905. data/schemas/tlc/1.2.1/alarms/A0201.json +35 -0
  906. data/schemas/tlc/1.2.1/alarms/A0202.json +35 -0
  907. data/schemas/tlc/1.2.1/alarms/A0301.json +92 -0
  908. data/schemas/tlc/1.2.1/alarms/A0302.json +115 -0
  909. data/schemas/tlc/1.2.1/alarms/A0303.json +92 -0
  910. data/schemas/tlc/1.2.1/alarms/A0304.json +115 -0
  911. data/schemas/tlc/1.2.1/alarms/alarms.json +287 -0
  912. data/schemas/tlc/1.2.1/commands/M0001.json +92 -0
  913. data/schemas/tlc/1.2.1/commands/M0002.json +69 -0
  914. data/schemas/tlc/1.2.1/commands/M0003.json +69 -0
  915. data/schemas/tlc/1.2.1/commands/M0004.json +51 -0
  916. data/schemas/tlc/1.2.1/commands/M0005.json +69 -0
  917. data/schemas/tlc/1.2.1/commands/M0006.json +69 -0
  918. data/schemas/tlc/1.2.1/commands/M0007.json +51 -0
  919. data/schemas/tlc/1.2.1/commands/M0008.json +69 -0
  920. data/schemas/tlc/1.2.1/commands/M0010.json +51 -0
  921. data/schemas/tlc/1.2.1/commands/M0011.json +51 -0
  922. data/schemas/tlc/1.2.1/commands/M0012.json +51 -0
  923. data/schemas/tlc/1.2.1/commands/M0013.json +51 -0
  924. data/schemas/tlc/1.2.1/commands/M0014.json +69 -0
  925. data/schemas/tlc/1.2.1/commands/M0015.json +69 -0
  926. data/schemas/tlc/1.2.1/commands/M0016.json +51 -0
  927. data/schemas/tlc/1.2.1/commands/M0017.json +51 -0
  928. data/schemas/tlc/1.2.1/commands/M0018.json +69 -0
  929. data/schemas/tlc/1.2.1/commands/M0019.json +87 -0
  930. data/schemas/tlc/1.2.1/commands/M0020.json +87 -0
  931. data/schemas/tlc/1.2.1/commands/M0021.json +51 -0
  932. data/schemas/tlc/1.2.1/commands/M0022.json +249 -0
  933. data/schemas/tlc/1.2.1/commands/M0023.json +51 -0
  934. data/schemas/tlc/1.2.1/commands/M0103.json +72 -0
  935. data/schemas/tlc/1.2.1/commands/M0104.json +141 -0
  936. data/schemas/tlc/1.2.1/commands/command_requests.json +8 -0
  937. data/schemas/tlc/1.2.1/commands/command_responses.json +8 -0
  938. data/schemas/tlc/1.2.1/commands/commands.json +399 -0
  939. data/schemas/tlc/1.2.1/defs/definitions.json +67 -0
  940. data/schemas/tlc/1.2.1/defs/guards.json +24 -0
  941. data/schemas/tlc/1.2.1/rsmp.json +74 -0
  942. data/schemas/tlc/1.2.1/statuses/S0001.json +91 -0
  943. data/schemas/tlc/1.2.1/statuses/S0002.json +36 -0
  944. data/schemas/tlc/1.2.1/statuses/S0003.json +36 -0
  945. data/schemas/tlc/1.2.1/statuses/S0004.json +36 -0
  946. data/schemas/tlc/1.2.1/statuses/S0005.json +72 -0
  947. data/schemas/tlc/1.2.1/statuses/S0006.json +54 -0
  948. data/schemas/tlc/1.2.1/statuses/S0007.json +73 -0
  949. data/schemas/tlc/1.2.1/statuses/S0008.json +73 -0
  950. data/schemas/tlc/1.2.1/statuses/S0009.json +73 -0
  951. data/schemas/tlc/1.2.1/statuses/S0010.json +73 -0
  952. data/schemas/tlc/1.2.1/statuses/S0011.json +73 -0
  953. data/schemas/tlc/1.2.1/statuses/S0012.json +73 -0
  954. data/schemas/tlc/1.2.1/statuses/S0013.json +54 -0
  955. data/schemas/tlc/1.2.1/statuses/S0014.json +62 -0
  956. data/schemas/tlc/1.2.1/statuses/S0015.json +62 -0
  957. data/schemas/tlc/1.2.1/statuses/S0016.json +36 -0
  958. data/schemas/tlc/1.2.1/statuses/S0017.json +36 -0
  959. data/schemas/tlc/1.2.1/statuses/S0018.json +61 -0
  960. data/schemas/tlc/1.2.1/statuses/S0019.json +36 -0
  961. data/schemas/tlc/1.2.1/statuses/S0020.json +54 -0
  962. data/schemas/tlc/1.2.1/statuses/S0021.json +37 -0
  963. data/schemas/tlc/1.2.1/statuses/S0022.json +36 -0
  964. data/schemas/tlc/1.2.1/statuses/S0023.json +37 -0
  965. data/schemas/tlc/1.2.1/statuses/S0024.json +37 -0
  966. data/schemas/tlc/1.2.1/statuses/S0025.json +162 -0
  967. data/schemas/tlc/1.2.1/statuses/S0026.json +36 -0
  968. data/schemas/tlc/1.2.1/statuses/S0027.json +36 -0
  969. data/schemas/tlc/1.2.1/statuses/S0028.json +36 -0
  970. data/schemas/tlc/1.2.1/statuses/S0029.json +36 -0
  971. data/schemas/tlc/1.2.1/statuses/S0030.json +36 -0
  972. data/schemas/tlc/1.2.1/statuses/S0031.json +36 -0
  973. data/schemas/tlc/1.2.1/statuses/S0032.json +73 -0
  974. data/schemas/tlc/1.2.1/statuses/S0033.json +77 -0
  975. data/schemas/tlc/1.2.1/statuses/S0034.json +36 -0
  976. data/schemas/tlc/1.2.1/statuses/S0035.json +49 -0
  977. data/schemas/tlc/1.2.1/statuses/S0091.json +40 -0
  978. data/schemas/tlc/1.2.1/statuses/S0092.json +40 -0
  979. data/schemas/tlc/1.2.1/statuses/S0095.json +36 -0
  980. data/schemas/tlc/1.2.1/statuses/S0096.json +126 -0
  981. data/schemas/tlc/1.2.1/statuses/S0097.json +54 -0
  982. data/schemas/tlc/1.2.1/statuses/S0098.json +72 -0
  983. data/schemas/tlc/1.2.1/statuses/S0201.json +54 -0
  984. data/schemas/tlc/1.2.1/statuses/S0202.json +54 -0
  985. data/schemas/tlc/1.2.1/statuses/S0203.json +54 -0
  986. data/schemas/tlc/1.2.1/statuses/S0204.json +198 -0
  987. data/schemas/tlc/1.2.1/statuses/S0205.json +54 -0
  988. data/schemas/tlc/1.2.1/statuses/S0206.json +54 -0
  989. data/schemas/tlc/1.2.1/statuses/S0207.json +54 -0
  990. data/schemas/tlc/1.2.1/statuses/S0208.json +198 -0
  991. data/schemas/tlc/1.2.1/statuses/statuses.json +787 -0
  992. data/schemas/tlc/1.2.1/sxl.yaml +2109 -0
  993. data/schemas/tlc/defs/guards.json +24 -0
  994. metadata +1000 -4
@@ -0,0 +1,1589 @@
1
+ ---
2
+ meta:
3
+ name: tlc
4
+ description: Traffic Light Controllers
5
+ version: 1.0.15
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:
38
+ functional_state:
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
+ Communication error between traffic light controllers / synchronisation error.
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 between one or multiple traffic light controllers and central control system.
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
+ A0009:
84
+ description: |-
85
+ Other error.
86
+ Used for other errors not covered by any other alarm type
87
+ Is a "minor fault" defined according to 3.11 in EN12675.
88
+ priority: 3
89
+ category: D
90
+ A0010:
91
+ description: |-
92
+ Door open.
93
+ Used for open door (room or cabinet).
94
+ priority: 3
95
+ category: D
96
+ statuses:
97
+ S0001:
98
+ description: |-
99
+ Signal group status.
100
+ Provides the status of each signal group, including basic information such as green, yellow and red. But also detailed technical information.
101
+ Can be used to draw a live signal group diagram as well provide diagnostic information about the performance of the controller.
102
+ arguments:
103
+ signalgroupstatus:
104
+ type: string
105
+ description: Signal group status as text field
106
+ pattern: "^[a-hA-G0-9N-P]*$"
107
+ cyclecounter:
108
+ type: integer
109
+ description: Cycle counter
110
+ range: "[0-999]"
111
+ basecyclecounter:
112
+ type: integer
113
+ description: Base cycle counter
114
+ range: "[0-999]"
115
+ stage:
116
+ type: integer
117
+ description: Current stage (isolated)
118
+ range: "[0-999]"
119
+ S0002:
120
+ description: |-
121
+ Detector logic status.
122
+ Provides the status of all detector logics of the controller.
123
+ 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.
124
+ arguments:
125
+ detectorlogicstatus:
126
+ type: string
127
+ description: Detector logic status as text field
128
+ S0003:
129
+ description: |-
130
+ Input status.
131
+ Input (1-255) of the controllers general purpose I/O.
132
+ Input is used where the traffic light controller must react to external control. It could be external detectors, bus priority, and much more.
133
+ arguments:
134
+ inputstatus:
135
+ type: string
136
+ description: Input status as text field
137
+ extendedinputstatus:
138
+ type: string
139
+ description: Extended input status as text field
140
+ S0004:
141
+ description: |-
142
+ Output status.
143
+ Output (1-255) of the controllers general purpose I/O.
144
+ 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.
145
+ arguments:
146
+ outputstatus:
147
+ type: string
148
+ description: Output status as text field
149
+ extendedoutputstatus:
150
+ type: string
151
+ description: Extended output status as text field
152
+ S0005:
153
+ description: |-
154
+ Traffic Light Controller starting.
155
+ The traffic signal is starting, e.g. it is in startup mode and has not begun working normally yet.
156
+ During startup mode the traffic controller shows dark, red, yellow flash or using the predetermined start cycle (minimum times).
157
+ arguments:
158
+ status:
159
+ type: boolean
160
+ description: |-
161
+ False: Controller is not in start up mode
162
+ True: Controller is currently in start up mode
163
+ S0006:
164
+ description: |-
165
+ Emergency stage.
166
+ The status is active during emergency prioritization.
167
+ Used in situations where full priority is given in the emergency vehicle program.
168
+ arguments:
169
+ status:
170
+ type: boolean
171
+ description: |-
172
+ False: Emergency stage inactive
173
+ True: Emergency stage active
174
+ emergencystage:
175
+ type: integer
176
+ description: Number of emergency stage
177
+ range: "[1-255]"
178
+ S0007:
179
+ description: |-
180
+ Controller switched on.
181
+ The controller is active and is not in dark mode.
182
+ Used to determine if the controller is operating, e.g. it shows red, green or yellow to the vehicles.
183
+ During maintenance work the controller might be using dark mode (no output to the signal heads).
184
+ arguments:
185
+ intersection:
186
+ type: integer_list
187
+ description: |-
188
+ 0: Not applicable (only one intersection exists or applicable for all intersection of the traffic light controller)
189
+ Other value: Intersection number
190
+ range: "[0-255]"
191
+ status:
192
+ type: boolean_list
193
+ description: |-
194
+ False: Traffic Light Controller in dark mode
195
+ True: Traffic Light Controller not in dark mode
196
+ S0008:
197
+ description: |-
198
+ Manual control.
199
+ Traffic control deactivated in controller
200
+ Signal timings is controlled manually by service personnel using the operating panel of the controller.
201
+ arguments:
202
+ intersection:
203
+ type: integer_list
204
+ description: |-
205
+ 0: Not applicable (only one intersection exists or applicable for all intersection of the traffic light controller)
206
+ Other value: Intersection number
207
+ range: "[0-255]"
208
+ status:
209
+ type: boolean_list
210
+ description: |-
211
+ False: Manual control inactive
212
+ True: Manual control active
213
+ S0009:
214
+ description: |-
215
+ Fixed time control.
216
+ Traffic actuated control deactivated and a pre-timed control is used.
217
+ Usually only used in case normal detectors can't be used, e.g. during maintenance work.
218
+ arguments:
219
+ intersection:
220
+ type: integer_list
221
+ description: |-
222
+ 0: Not applicable (only one intersection exists or applicable for all intersection of the traffic light controller)
223
+ Other value: Intersection number
224
+ range: "[0-255]"
225
+ status:
226
+ type: boolean_list
227
+ description: |-
228
+ False: Fixed time control inactive
229
+ True: Fixed time control active
230
+ S0010:
231
+ description: |-
232
+ Isolated control.
233
+ Isolated control mode indicates that the controller operates independently of any other traffic light controllers. This may different depending on traffic program (time plan).
234
+ Used to determine if the controller is operating independently or operating with other controllers (coordination).
235
+ arguments:
236
+ intersection:
237
+ type: integer_list
238
+ description: |-
239
+ 0: Not applicable (only one intersection exists or applicable for all intersection of the traffic light controller)
240
+ Other value: Intersection number
241
+ range: "[0-255]"
242
+ status:
243
+ type: boolean_list
244
+ description: |-
245
+ False: Isolated control disabled
246
+ True: Isolated control enabled (Vehicle actuated control or Fixed time control)
247
+ S0011:
248
+ description: |-
249
+ Yellow flash.
250
+ The controller shows yellow flash.
251
+ Yellow flash may be used during a serious fault (depending on configuration) or maintenance work. It can also be manually set using M0001.
252
+ arguments:
253
+ intersection:
254
+ type: integer_list
255
+ description: |-
256
+ 0: Not applicable (only one intersection exists or applicable for all intersection of the traffic light controller)
257
+ Other value: Intersection number
258
+ range: "[0-255]"
259
+ status:
260
+ type: boolean_list
261
+ description: |-
262
+ False: Yellow flash disabled
263
+ True: Yellow flash enabled
264
+ S0012:
265
+ description: |-
266
+ All red.
267
+ The controller show all red.
268
+ All red can be manually set using the controllers operating panel during maintenance work.
269
+ arguments:
270
+ intersection:
271
+ type: integer_list
272
+ description: |-
273
+ 0: Not applicable (only one intersection exists or applicable for all intersection of the traffic light controller)
274
+ Other value: Intersection number
275
+ range: "[0-255]"
276
+ status:
277
+ type: boolean_list
278
+ description: |-
279
+ False: All red disabled
280
+ True: All red enabled
281
+ S0013:
282
+ description: |-
283
+ Police key
284
+ The controller is forced to dark mode or yellow flash.
285
+ The "police key" is a external control switch present in some controllers that manually switches the controller to either dark mode or yellow flash.
286
+ arguments:
287
+ intersection:
288
+ type: integer_list
289
+ description: |-
290
+ 0: Not applicable (only one intersection exists or applicable for all intersection of the traffic light controller)
291
+ Other value: Intersection number
292
+ range: "[0-255]"
293
+ status:
294
+ type: integer_list
295
+ values:
296
+ 0: disabled
297
+ 1: dark mode
298
+ 2: yellow flash
299
+ S0014:
300
+ description: |-
301
+ Current time plan.
302
+ The current time plan (signal program) used in the controller. There may be 1-255 predefined time plans.
303
+ 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.
304
+ arguments:
305
+ status:
306
+ type: integer
307
+ description: Current time plan
308
+ range: "[1-255]"
309
+ S0015:
310
+ description: |-
311
+ Current traffic situation.
312
+ The current traffic situation used in the controller.
313
+ 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).
314
+ 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.
315
+ arguments:
316
+ status:
317
+ type: integer
318
+ description: Current traffic situation
319
+ range: "[1-255]"
320
+ S0016:
321
+ description: |-
322
+ Number of detector logics.
323
+ Can be used by the management system to check the number of detector logics configured in the controller.
324
+ arguments:
325
+ number:
326
+ type: long
327
+ description: Number of detector logics
328
+ range: "[1-65025]"
329
+ S0017:
330
+ description: |-
331
+ Number of signal groups.
332
+ Can be used for the management system to check the number of signal groups configured in the controller.
333
+ arguments:
334
+ number:
335
+ type: long
336
+ description: Number of signal groups
337
+ range: "[1-65025]"
338
+ S0018:
339
+ description: |-
340
+ Number of time plans
341
+ Can be used for the management system to check the number of time plans configured in the controller.
342
+ arguments:
343
+ number:
344
+ type: long
345
+ description: Number of time plans (depreciated)
346
+ range: "[1-65025]"
347
+ S0019:
348
+ description: |-
349
+ Number of traffic situations.
350
+ Can be used for the management system to check the number of traffic situations configured in the controller.
351
+ arguments:
352
+ number:
353
+ type: long
354
+ description: Number of traffic situations
355
+ range: "[1-65025]"
356
+ S0020:
357
+ description: |-
358
+ Control mode.
359
+ Can be used for the management system to check the current control mode (startup, normal, standby, failure, test).
360
+ arguments:
361
+ intersection:
362
+ type: integer_list
363
+ description: |-
364
+ 0: Not applicable (only one intersection exists or applicable for all intersection of the traffic light controller)
365
+ Other value: Intersection number
366
+ range: "[0-255]"
367
+ controlmode:
368
+ type: string_list
369
+ values:
370
+ startup: Startup mode
371
+ control: Normal control
372
+ standby: Standby mode
373
+ failure: Failure mode
374
+ test: Test mode
375
+ S0021:
376
+ description: |-
377
+ Manually set detector logic.
378
+ Provides status of detector logic (1-255) regarding if they are either forced to true or false.
379
+ Can be used to connect RSMP compatible detection equipment to the traffic light controller. Can also be used for prioritization.
380
+ arguments:
381
+ detectorlogics:
382
+ type: string
383
+ description: Manually set detector logics (1/0) as text field
384
+ pattern: "^[01]*$"
385
+ S0022:
386
+ description: |-
387
+ List of time plans.
388
+ 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.
389
+ Can be used for the management system to check the number of time plans configured in the controller.
390
+ arguments:
391
+ status:
392
+ type: string
393
+ description: Comma separated list of configured time plans. E.g. "1,2,3,5"
394
+ S0023:
395
+ description: |-
396
+ Dynamic bands.
397
+ Provides a list of all defined dynamic bands. Dynamic bands moves start of signal groups in the cycle and changes the signal timings.
398
+ A typical usage of dynamic bands is scenario based control where changing of signal timings is used for optimal traffic flow.
399
+ arguments:
400
+ status:
401
+ type: string
402
+ description: |-
403
+ Dynamic bands.
404
+ Each dynamic band are written as pp-dd-ee where:
405
+ pp=Time plan
406
+ dd=Dynamic band number (from 1-10)
407
+ ee=Extension in seconds in this band
408
+
409
+ Each dynamic band is separated with a comma.
410
+
411
+ E.g.
412
+ pp-dd-ee,pp-dd-ee
413
+ pattern: "(^$)|(^(?<item>(\\d{1,2})\\-\\d{1,2}-\\d{1,2})(,\\g<item>)*$)"
414
+ S0024:
415
+ description: |-
416
+ Offset time.
417
+ Offset time is used to define an offset between intersections in coordinated control. It is based on the expected travel time between intersections.
418
+ Can be used by the management system to check to fine tune the coordination for optimal traffic flow.
419
+ arguments:
420
+ status:
421
+ type: string
422
+ description: |-
423
+ Offset table
424
+ Each offset time is written as pp-tt where:
425
+ pp=time plan
426
+ tt=offset time in seconds
427
+
428
+ Each offset time is separated with a comma
429
+
430
+ E.g.
431
+ pp-tt,pp-tt
432
+ pattern: "^(\\d{1,2}\\-\\d{1,2})(?:,(\\d{1,2}\\-\\d{1,2}))*$"
433
+ S0026:
434
+ description: |-
435
+ Week time table.
436
+ Week time table for signal programs (time plan) to use for each day during a week.
437
+ The week time table determine which predefined signal timings (time plan) to use during the week for optimal traffic flow.
438
+ arguments:
439
+ status:
440
+ type: string
441
+ description: |-
442
+ Week time table. Defines time table to use for each week day
443
+ Each day is written as d-t where:
444
+ d=day of week
445
+ t=time table nr
446
+
447
+ Day of week legend:
448
+ 0=Monday
449
+ 1=Tuesday
450
+ 2=Wednesday
451
+ 3=Thursday
452
+ 4=Friday
453
+ 5=Saturday
454
+ 6=Sunday
455
+
456
+ Each segment is separated with a comma
457
+ E.g.
458
+ d-t,d-t
459
+ S0027:
460
+ description: |-
461
+ Time tables.
462
+ Time of day for when to switch signal program (time plan).
463
+ The signal timings (time plan) to use during time of day for optimal traffic flow.
464
+ arguments:
465
+ status:
466
+ type: string
467
+ description: |-
468
+ Time Table. Defines time tables.
469
+ Each time definition is written as t-o-h-m where:
470
+ t=time table nr (1-12)
471
+ o=function
472
+ h=hour - switching time
473
+ m=minute - switching minute
474
+
475
+ Function legend:
476
+ 0=no plan is selected by time table
477
+ 1=set plan 1
478
+ ...
479
+ 16= set plan 16
480
+
481
+ hour and minute is using local time (not UTC)
482
+
483
+ Each time definition is separated with a comma
484
+
485
+ E.g.
486
+ t-o-h-m,t-o-h-m
487
+ S0028:
488
+ description: |-
489
+ Cycle time.
490
+ 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.
491
+ Changing the cycle time can be used as part of scenario based control.
492
+ arguments:
493
+ status:
494
+ type: string
495
+ description: |-
496
+ Cycle time table
497
+ Each cycle time is written as pp-tt where:
498
+ pp=time plan
499
+ tt=cycle time in seconds
500
+
501
+ Each cycle time is separated with a comma
502
+
503
+ E.g.
504
+ pp-tt,pp-tt
505
+ S0029:
506
+ description: |-
507
+ Forced input status.
508
+ 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.
509
+ Can be used for bus priority, coordination between traffic controllers, external control systems, and much more.
510
+ arguments:
511
+ status:
512
+ type: string
513
+ description: Forced input status as text field
514
+ S0030:
515
+ description: |-
516
+ Forced output status.
517
+ 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.
518
+ Can be used for bus priority, coordination between traffic controllers, external control systems, and much more.
519
+ arguments:
520
+ status:
521
+ type: string
522
+ description: Forced output status as text field
523
+ S0031:
524
+ description: |-
525
+ Trigger level sensitivity for loop detector.
526
+ 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.
527
+ Can be used to make sure that the detectors detect traffic as intended.
528
+ arguments:
529
+ status:
530
+ type: string
531
+ description: |-
532
+ Loop detector trigger level sensitivity is written as dd-ss where:
533
+ dd=loop detector number
534
+ ss=sensitivity value
535
+ Each loop detector is separated with a comma. E.g.dd-ss,dd-ss.
536
+ S0091:
537
+ description: |-
538
+ Operator logged in/out OP-panel.
539
+ Provides information if maintenance personnel is currently working on site.
540
+ arguments:
541
+ user:
542
+ description: |-
543
+ nobody: No one logged in
544
+ <username>: User currently logged in
545
+ type: string
546
+ status:
547
+ type: string
548
+ values:
549
+ login: Somebody currently logged in
550
+ logout: Nobody currently logged in
551
+ S0092:
552
+ description: |-
553
+ Operator logged in/out web-interface.
554
+ Provides information if maintenance personnel is currently working with the controller.
555
+ arguments:
556
+ user:
557
+ description: |-
558
+ nobody: No one logged in
559
+ <username>: User currently logged in
560
+ type: string
561
+ status:
562
+ type: string
563
+ values:
564
+ login: Somebody currently logged in
565
+ logout: Nobody currently logged in
566
+ S0095:
567
+ description: |-
568
+ Version of Traffic Light Controller.
569
+ Provides diagnostic version information.
570
+ arguments:
571
+ status:
572
+ type: string
573
+ description: Manufacturer, product name and version of traffic light controller
574
+ S0096:
575
+ description: |-
576
+ Current date and time
577
+ Provides diagnostic information about the current date and time set in the controller.
578
+ arguments:
579
+ year:
580
+ type: integer
581
+ description: 'Year according to format YYYY. NOTE: UTC is used'
582
+ range: YYYY
583
+ month:
584
+ type: integer
585
+ description: 'Month (01-12) according to format MM. Note: UTC is used'
586
+ range: MM
587
+ day:
588
+ type: integer
589
+ description: 'Day of month (01-31) according to format DD. Note: UTC
590
+ is used'
591
+ range: DD
592
+ hour:
593
+ type: integer
594
+ description: 'Hour of day (00-23) according to format DD. Note: UTC is
595
+ used'
596
+ range: HH
597
+ minute:
598
+ type: integer
599
+ description: 'Minute (00-59) according to format MM. Note: UTC is used'
600
+ range: MM
601
+ second:
602
+ type: integer
603
+ description: 'Second (00-59) according to format SS. Note: UTC is used'
604
+ range: SS
605
+ S0097:
606
+ description: |-
607
+ Checksum of traffic parameters.
608
+ Can be used to check if any traffic parameter has been changed.
609
+ 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.
610
+ arguments:
611
+ checksum:
612
+ type: string
613
+ description: |-
614
+ Checksum of the traffic parameters
615
+ Uses SHA-2 as hashing algorithm
616
+ Includes
617
+ - all signal programs, including program versions
618
+ - signal group settings
619
+ - time plans
620
+ - safety matrix
621
+ - intergreen times
622
+ - detector settings
623
+
624
+ It should NOT include:
625
+ - network settings
626
+ - log files
627
+ - software
628
+ - other device settings that are not part of the signal program
629
+
630
+ Note:
631
+ - The checksum should be calculated using the same data as used in S0098
632
+ timestamp:
633
+ type: timestamp
634
+ description: Time stamp of the checksum. Format according to W3C XML dateTime
635
+ with a resolution of 3 decimal places. All time stamps in UTC. E.g.
636
+ 2009-10-02T14:34:34.341Z
637
+ S0098:
638
+ description: |-
639
+ Configuration of traffic parameters.
640
+ Can be used to download all traffic parameters from the controller.
641
+ 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.
642
+ arguments:
643
+ config:
644
+ type: base64
645
+ description: |-
646
+ Traffic parameters.
647
+ Includes
648
+ - all signal programs, including program versions
649
+ - signal group settings
650
+ - time plans
651
+ - safety matrix
652
+ - intergreen times
653
+ - detector setting
654
+
655
+ It should NOT include:
656
+ - network settings
657
+ - log files
658
+ - software
659
+ - other device settings that are not part of the signal program
660
+
661
+ Note:
662
+ - There is no way to upload this binary file to the TLC using RSMP
663
+ - The format of the binary file is not specified and is not expected to be compatible between suppliers
664
+ range: "[binary]"
665
+ timestamp:
666
+ type: timestamp
667
+ description: |-
668
+ 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
669
+ version:
670
+ type: string
671
+ description: |-
672
+ Version information of the configuration. Contains basic information such as controller id, changes to config and other information.
673
+ The format is not specified in detail.
674
+ S0205:
675
+ description: |-
676
+ Traffic Counting: Number of vehicles.
677
+ This status was introduced to improve performance in case traffic counting is done on all all detectors.
678
+ arguments:
679
+ start:
680
+ type: timestamp
681
+ description: |-
682
+ 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
683
+ vehicles:
684
+ type: string
685
+ description: |-
686
+ Number of vehicles.
687
+ - Value expressed as an integer with a range of 0-65535.
688
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
689
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
690
+ range: "[0-65535,...]"
691
+ S0206:
692
+ description: |-
693
+ Traffic Counting: Vehicle speed
694
+ This status was introduced to improve performance in case traffic counting is done on all all detectors.
695
+ arguments:
696
+ start:
697
+ type: timestamp
698
+ description: |-
699
+ Time stamp for start of measuring. Format according to W3C
700
+ XML dateTime with a resolution of 3 decimal places. All time stamps
701
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
702
+ speed:
703
+ type: string
704
+ description: |-
705
+ Average speed in km/h (integer).
706
+ - Value expressed as an integer with a range of 0-65535.
707
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
708
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
709
+ range: "[0-65535,...]"
710
+ S0207:
711
+ description: |-
712
+ Traffic Counting: Occupancy.
713
+ This status was introduced to improve performance in case traffic counting is done on all all detectors.
714
+ arguments:
715
+ start:
716
+ type: timestamp
717
+ description: |-
718
+ Time stamp for start of measuring. Format according to W3C
719
+ XML dateTime with a resolution of 3 decimal places. All time stamps
720
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
721
+ occupancy:
722
+ type: string
723
+ description: |-
724
+ Occupancy in percent (%) (0-100)
725
+ - Value expressed as an integer with a range of 0-100.
726
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
727
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
728
+ range: "[0-100,...]"
729
+ S0208:
730
+ description: |-
731
+ Traffic Counting: Number of vehicles of given classification.
732
+ This status was introduced to improve performance in case traffic counting is done on all all detectors.
733
+ arguments:
734
+ start:
735
+ type: timestamp
736
+ description: |-
737
+ Time stamp for start of measuring. Format according to W3C
738
+ XML dateTime with a resolution of 3 decimal places. All time stamps
739
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
740
+ P:
741
+ type: string
742
+ description: |-
743
+ Number of cars.
744
+ - Value expressed as an integer with a range of 0-65535.
745
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
746
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
747
+ range: "[0-65535,...]"
748
+ PS:
749
+ type: string
750
+ description: |-
751
+ Number of cars with trailers.
752
+ - Value expressed as an integer with a range of 0-65535.
753
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
754
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
755
+ range: "[0-65535,...]"
756
+ L:
757
+ type: string
758
+ description: |-
759
+ Number of trucks.
760
+ - Value expressed as an integer with a range of 0-65535.
761
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
762
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
763
+ range: "[0-65535,...]"
764
+ LS:
765
+ type: string
766
+ description: |-
767
+ Number of trucks with trailers.
768
+ - Value expressed as an integer with a range of 0-65535.
769
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
770
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
771
+ range: "[0-65535,...]"
772
+ B:
773
+ type: string
774
+ description: |-
775
+ Number of busses.
776
+ - Value expressed as an integer with a range of 0-65535.
777
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
778
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
779
+ range: "[0-65535,...]"
780
+ SP:
781
+ type: string
782
+ description: |-
783
+ Number of trams.
784
+ - Value expressed as an integer with a range of 0-65535.
785
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
786
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
787
+ range: "[0-65535,...]"
788
+ MC:
789
+ type: string
790
+ description: |-
791
+ Number of motor cycles.
792
+ - Value expressed as an integer with a range of 0-65535.
793
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
794
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
795
+ range: "[0-65535,...]"
796
+ C:
797
+ type: string
798
+ description: |-
799
+ Number of bicycles.
800
+ - Value expressed as an integer with a range of 0-65535.
801
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
802
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
803
+ range: "[0-65535,...]"
804
+ F:
805
+ type: string
806
+ description: |-
807
+ Number of pedestrians.
808
+ - Value expressed as an integer with a range of 0-65535.
809
+ - Contains data from all detector logics. Each detector logic is separated with a comma.
810
+ - The value is set to "-1" if no data could be measured (e.g. detector fault)
811
+ range: "[0-65535,...]"
812
+ commands:
813
+ M0001:
814
+ description: |-
815
+ Sets functional position.
816
+ Sets the controller to yellow flash, dark mode or normal control.
817
+ Requires security code 2.
818
+ arguments:
819
+ status:
820
+ type: string
821
+ description: Set operating mode
822
+ values:
823
+ NormalControl: Normal Control
824
+ YellowFlash: Enables yellow flash
825
+ Dark: Enables dark mode
826
+ securityCode:
827
+ type: string_list
828
+ description: Security code 2
829
+ timeout:
830
+ type: integer_list
831
+ description: |-
832
+ Time in minutes until controller automatically reverts to previous functional position.
833
+ 0=no automatic return
834
+ min: 0
835
+ max: 1440
836
+ intersection:
837
+ type: integer_list
838
+ description: Intersection number
839
+ min: 0
840
+ max: 255
841
+ command: setValue
842
+ M0002:
843
+ description: |-
844
+ Sets current time plan.
845
+ Change of traffic program of the traffic light controller.
846
+ Typical usages is scenario based control where change of program is used to change signal timings etc.
847
+ This command changes the signal timings for optimal traffic flow.
848
+ Requires security code 2
849
+ arguments:
850
+ status:
851
+ type: boolean
852
+ description: |-
853
+ False: Controller uses time plan according to programming
854
+ True: Controller uses time plan according to command
855
+ securityCode:
856
+ type: string
857
+ description: Security code 2
858
+ timeplan:
859
+ type: integer
860
+ description: designation of time plan
861
+ range: "[1-255]"
862
+ command: setPlan
863
+ M0003:
864
+ description: |-
865
+ Sets traffic situation the controller uses.
866
+ 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).
867
+ 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.
868
+ Requires security code 2
869
+ arguments:
870
+ status:
871
+ type: boolean
872
+ description: |-
873
+ False: Controller uses traffic situation according to own programming
874
+ True: Controller uses traffic situation according to command
875
+ securityCode:
876
+ type: string
877
+ description: Security code 2
878
+ traficsituation:
879
+ type: integer
880
+ description: designation of traficsituation
881
+ range: "[1-255]"
882
+ command: setTrafficSituation
883
+ M0004:
884
+ description: |-
885
+ Restarts Traffic Light Controller.
886
+ Used in the event of serious faults in the device where a restart is considered to be able to remedy a problem.
887
+ Requires security code 2
888
+ arguments:
889
+ status:
890
+ type: boolean
891
+ description: 'True: Restart controller'
892
+ securityCode:
893
+ type: string
894
+ description: Security code 2
895
+ command: setRestart
896
+ M0005:
897
+ description: |-
898
+ Activate emergency route.
899
+ 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.
900
+ Should be used in situations where full priority is given in the emergency vehicle program.
901
+ Requires security code 2.
902
+ arguments:
903
+ status:
904
+ type: boolean
905
+ description: |-
906
+ False: Activate emergency route
907
+ True: Deactivate emergency route
908
+ securityCode:
909
+ type: string
910
+ description: Security code 2
911
+ emergencyroute:
912
+ type: integer
913
+ description: Number of emergency route
914
+ range: "[1-255]"
915
+ command: setEmergency
916
+ M0006:
917
+ description: |-
918
+ Activate input.
919
+ Set given input (1-255) of the controllers general purpose I/O to either true or false.
920
+ The function can provide an input to the traffic light controller on which a predefined action can be taken.
921
+ Can be used for all types of input where the traffic light controller must react to external control.
922
+ Typical usages are bus priority, coordination between traffic controllers, external control systems, and much more.
923
+ Requires security code 2.
924
+ arguments:
925
+ status:
926
+ type: boolean
927
+ description: |-
928
+ False: Deactivate input
929
+ True: Activate input
930
+ securityCode:
931
+ type: string
932
+ description: Security code 2
933
+ input:
934
+ type: integer
935
+ description: Number of Input
936
+ range: "[1-255]"
937
+ command: setInput
938
+ M0007:
939
+ description: |-
940
+ Activate fixed time control.
941
+ Deactivates the traffic actuated control using detectors and activates pre-timed control.
942
+ Can be used in case normal detectors can't be used, e.g. during maintenance work.
943
+ Requires security code 2.
944
+ arguments:
945
+ status:
946
+ type: boolean
947
+ description: |-
948
+ False: Deactivate fixed time control
949
+ True: Activate fixed time control
950
+ securityCode:
951
+ type: string
952
+ description: Security code 2
953
+ command: setFixedTime
954
+ M0012:
955
+ description: |-
956
+ Request start or stop of a series of signal groups.
957
+ Starts or stops several signal groups.
958
+ 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.
959
+ 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.
960
+ Intended for use with coordination of signaling systems where a traffic light controller communicates with neighboring controllers.
961
+ Only used when a primary controller orders signal group of other controller to green or red (Coordination with external control bits).
962
+ May also include purposes for adaptive control where a UTC system or a local traffic light controller takes over the phase control (stage control).
963
+ Requires security code 2.
964
+ arguments:
965
+ status:
966
+ type: string
967
+ description: |-
968
+ 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.
969
+
970
+ 1=Order signal group to green
971
+ 0=Order signal group to red
972
+
973
+ Format: [Offset],[Bits to set],[Bits to unset]:...
974
+
975
+ 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.
976
+
977
+ Example 1:
978
+ "5, 4134, 65" sets input 6,7,10,17 = on and 5,11 = off
979
+ (Input starts from no. 5 and bit 1,2,5,12 = 1 and bit 0,6 = 0)
980
+
981
+ Example 2:
982
+ "22, 1, 4" sets input 22 = on and 24 = off
983
+ (Input starts from no. 22 and bit 0 = 1 and bit 2 = 0)
984
+
985
+ And both these examples could be sent in the same message as:
986
+ "5,4143,65:22,1,4"
987
+
988
+ Such a message would order signal group 6,7,10,17,22 to green and signal group 5,11,24 to red
989
+ securityCode:
990
+ type: string
991
+ description: Security code 2
992
+ command: setStart
993
+ M0013:
994
+ description: |-
995
+ Activate a series of inputs.
996
+ Set given inputs (1-255) of the controllers general purpose I/O to either true or false.
997
+ 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 RSMP message.
998
+ 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.
999
+ Requires security code 2
1000
+ arguments:
1001
+ status:
1002
+ type: string
1003
+ description: |-
1004
+ 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. Since semicolon breaks the SXL csv-format, colon, ":" is used in example below.
1005
+
1006
+ Format: [Offset],[Bits to set],[Bits to unset]:...
1007
+
1008
+ 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.
1009
+
1010
+ Example 1:
1011
+ "5, 4134, 65" sets input 6,7,10,17 = on and 5,11 = off
1012
+ (Input starts from no. 5 and bit 1,2,5,12 = 1 and bit 0,6 = 0)
1013
+
1014
+ Example 2:
1015
+ "22, 1, 4" sets input 22 = on and 24 = off
1016
+ (Input starts from no. 22 and bit 0 = 1 and bit 2 = 0)
1017
+
1018
+ And both thease examples could be sent in the same message as:
1019
+ "5,4143:65:22,1,4"
1020
+
1021
+ Such a message would activate input 6,7,10,17,22 and deactivate input 5,11,24
1022
+ securityCode:
1023
+ type: string
1024
+ description: Security code 2
1025
+ command: setInput
1026
+ M0014:
1027
+ description: |-
1028
+ Set dynamic bands.
1029
+ Can be used to change between predefined signal timings. Moves the start of signal groups in the cycle.
1030
+ 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.
1031
+ Requires security code 2
1032
+ arguments:
1033
+ plan:
1034
+ type: integer
1035
+ description: Plan to be changed
1036
+ range: "[0-255]"
1037
+ status:
1038
+ type: string
1039
+ description: |-
1040
+ Dynamic bands.
1041
+ Each dynamic band are written as dd-ee where:
1042
+ dd=Dynamic band number (from 1-10)
1043
+ ee=Extension in seconds in this band
1044
+
1045
+ Each dynamic band is separated with a comma.
1046
+
1047
+ E.g.
1048
+ dd-ee,dd-ee
1049
+ securityCode:
1050
+ type: string
1051
+ description: Security code 2
1052
+ command: setCommands
1053
+ M0015:
1054
+ description: |-
1055
+ Set Offset time.
1056
+ Offset time is used to define an offset between intersections in coordinated control. It is based on the expected travel time between intersections.
1057
+ This command can be used to fine tune the coordination for optimal traffic flow.
1058
+ Requires security code 2.
1059
+ arguments:
1060
+ status:
1061
+ type: integer
1062
+ description: Set offset time in seconds
1063
+ range: "[0-255]"
1064
+ plan:
1065
+ type: integer
1066
+ description: Time plan nr
1067
+ range: "[0-255]"
1068
+ securityCode:
1069
+ type: string
1070
+ description: Security code 2
1071
+ command: setOffset
1072
+ M0016:
1073
+ description: |-
1074
+ Set week time table.
1075
+ Set which time table for signal programs to use for each day during a week.
1076
+ This command changes the signal timings during the week for optimal traffic flow.
1077
+ Requires security code 2.
1078
+ arguments:
1079
+ status:
1080
+ type: string
1081
+ description: |-
1082
+ Week time table. Defines time table to use for each week day
1083
+ Each segment is written as d-t where:
1084
+ d=day of week
1085
+ t=time table nr
1086
+
1087
+ Day of week legend:
1088
+ 0=Monday
1089
+ 1=Tuesday
1090
+ 2=Wednesday
1091
+ 3=Thursday
1092
+ 4=Friday
1093
+ 5=Saturday
1094
+ 6=Sunday
1095
+
1096
+ Each segment is separated with a comma
1097
+
1098
+ E.g.
1099
+ d-t,d-t
1100
+ securityCode:
1101
+ type: string
1102
+ description: Security code 2
1103
+ command: setWeekTable
1104
+ M0017:
1105
+ description: |-
1106
+ Set time tables.
1107
+ Set time of day for when to automatically switch signal program (time plan).
1108
+ This command changes the signal timings according to time of day for optimal traffic flow.
1109
+ Requires security code 2.
1110
+ arguments:
1111
+ status:
1112
+ type: string
1113
+ description: |-
1114
+ Time Table. Defines time tables.
1115
+ Each time definition is written as t-o-h-m where:
1116
+ t=time table nr (1-12)
1117
+ o=function
1118
+ h=hour - switching time
1119
+ m=minute - switching minute
1120
+
1121
+ Function legend:
1122
+ 0=no plan is selected by time table
1123
+ 1=set plan 1
1124
+ ...
1125
+ 16= set plan 16
1126
+
1127
+ hour and minute is using local time (not UTC)
1128
+
1129
+ Each time definition is separated with a comma.
1130
+
1131
+ E.g.
1132
+ t-o-h-m,t-o-h-m
1133
+ securityCode:
1134
+ type: string
1135
+ description: Security code 2
1136
+ command: setTimeTable
1137
+ M0018:
1138
+ description: |-
1139
+ Set Cycle time.
1140
+ 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.
1141
+ 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.
1142
+ Requires security code 2.
1143
+ arguments:
1144
+ status:
1145
+ type: integer
1146
+ description: Set cycle time in seconds
1147
+ range: "[1-255]"
1148
+ plan:
1149
+ type: integer
1150
+ description: Time plan nr
1151
+ range: "[0-255]"
1152
+ securityCode:
1153
+ type: string
1154
+ description: Security code 2
1155
+ command: setCycleTime
1156
+ M0019:
1157
+ description: |-
1158
+ Force input.
1159
+ 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.
1160
+ Can be used for bus priority, coordination between traffic controllers, external control systems, and much more.
1161
+ Requires security code 2.
1162
+ arguments:
1163
+ status:
1164
+ type: boolean
1165
+ description: |-
1166
+ False: Force input
1167
+ True: Release input
1168
+ securityCode:
1169
+ type: string
1170
+ description: Security code 2
1171
+ input:
1172
+ type: integer
1173
+ description: Number of Input
1174
+ range: "[1-255]"
1175
+ inputValue:
1176
+ type: boolean
1177
+ description: |-
1178
+ False: input forced to False
1179
+ True: input forced to True
1180
+ command: setInput
1181
+ M0020:
1182
+ description: |-
1183
+ Force output.
1184
+ 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.
1185
+ Can be used for bus priority, coordination between traffic controllers, external control systems, and much more.
1186
+ Requires security code 2.
1187
+ arguments:
1188
+ status:
1189
+ type: boolean
1190
+ description: |-
1191
+ False: Force output
1192
+ True: Release output
1193
+ securityCode:
1194
+ type: string
1195
+ description: Security code 2
1196
+ output:
1197
+ type: integer
1198
+ description: Number of Output
1199
+ range: "[1-255]"
1200
+ outputValue:
1201
+ type: boolean
1202
+ description: |-
1203
+ False: output forced to False
1204
+ True: output forced to True
1205
+ command: setOutput
1206
+ M0021:
1207
+ description: |-
1208
+ Set trigger level sensitivity for loop detector.
1209
+ 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.
1210
+ This command provides the ability to fine tune loop detectors to make sure they detect traffic as intended.
1211
+ Requires security code 2
1212
+ arguments:
1213
+ status:
1214
+ type: string
1215
+ description: |-
1216
+ Loop detector trigger level sensitivity is written as dd-ss where:
1217
+ dd=loop detector number
1218
+ ss=sensitivity value
1219
+ securityCode:
1220
+ type: string
1221
+ description: Security code 2
1222
+ command: setLevel
1223
+ M0103:
1224
+ description: |-
1225
+ Set security code.
1226
+ Change the security code to use when sending commands
1227
+ 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.
1228
+ arguments:
1229
+ status:
1230
+ type: string
1231
+ values:
1232
+ Level1: Change security code 1
1233
+ Level2: Change security code 2
1234
+ oldSecurityCode:
1235
+ type: string
1236
+ description: Previous security code
1237
+ newSecurityCode:
1238
+ type: string
1239
+ description: New security code
1240
+ command: setSecurityCode
1241
+ M0104:
1242
+ description: |-
1243
+ Set clock.
1244
+ 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.
1245
+ Requires security code 1
1246
+ arguments:
1247
+ securityCode:
1248
+ type: string
1249
+ description: Security code 1
1250
+ year:
1251
+ type: integer
1252
+ description: |-
1253
+ Changes internal clock. Note: UTC is used
1254
+ Year according to YYYY
1255
+ range: "[YYYY]"
1256
+ month:
1257
+ type: integer
1258
+ description: |-
1259
+ Changes internal clock. Note: UTC is used
1260
+ Month according to MM (01-12)
1261
+ range: "[MM]"
1262
+ day:
1263
+ type: integer
1264
+ description: |-
1265
+ Changes internal clock. Note: UTC is used
1266
+ Day in month according to DD (01-31)
1267
+ range: "[DD]"
1268
+ hour:
1269
+ type: integer
1270
+ description: |-
1271
+ Changes internal clock. Note: UTC is used
1272
+ Hour according to HH (00-23)
1273
+ range: "[HH]"
1274
+ minute:
1275
+ type: integer
1276
+ description: |-
1277
+ Changes internal clock. Note: UTC is used
1278
+ Minute according to MM (00-59)
1279
+ range: "[MM]"
1280
+ second:
1281
+ type: integer
1282
+ description: |-
1283
+ Changes internal clock. Note: UTC is used
1284
+ Second according to SS (00-59)
1285
+ range: "[SS]"
1286
+ command: setDate
1287
+ Signal group:
1288
+ description:
1289
+ alarms:
1290
+ A0008:
1291
+ description: |-
1292
+ Dead lock error.
1293
+ Used for dead lock errors.
1294
+ 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.
1295
+ 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.
1296
+ priority: 2
1297
+ category: D
1298
+ arguments:
1299
+ timeplan:
1300
+ type: integer
1301
+ description: Current time plan
1302
+ range: "[designation]"
1303
+ A0101:
1304
+ description: |-
1305
+ Pushbutton error.
1306
+ Used for push buttons.
1307
+ priority: 3
1308
+ category: D
1309
+ A0201:
1310
+ description: |-
1311
+ Serious lamp error.
1312
+ Used for lamp errors.
1313
+ 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.
1314
+ priority: 2
1315
+ category: D
1316
+ arguments:
1317
+ color:
1318
+ type: string
1319
+ description: Color of lamp
1320
+ values:
1321
+ red: red
1322
+ yellow: yellow
1323
+ green: green
1324
+ A0202:
1325
+ description: |-
1326
+ Less serious lamp error.
1327
+ Used for lamp errors.
1328
+ Is a "minor fault" defined according to 3.11 in EN12675.
1329
+ priority: 3
1330
+ category: D
1331
+ arguments:
1332
+ color:
1333
+ type: string
1334
+ description: Color of lamp
1335
+ values:
1336
+ red: red
1337
+ yellow: yellow
1338
+ green: green
1339
+ statuses:
1340
+ S0025:
1341
+ description: |-
1342
+ Time-of-Green / Time-of-Red.
1343
+ Provides predicted signal timings of green and red for each signal group. Max, min and likely time to green and red.
1344
+ arguments:
1345
+ minToGEstimate :
1346
+ type: timestamp
1347
+ description: |-
1348
+ 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.
1349
+ 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
1350
+ maxToGEstimate :
1351
+ type: timestamp
1352
+ description: |-
1353
+ 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.
1354
+ 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
1355
+ likelyToGEstimate :
1356
+ type: timestamp
1357
+ description: |-
1358
+ 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.
1359
+ 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
1360
+ ToGConfidence:
1361
+ type: integer
1362
+ description: Confidence of the likelyToGEstimate. 0-100%
1363
+ range: "[0-100]"
1364
+ minToREstimate :
1365
+ type: timestamp
1366
+ description: |-
1367
+ 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.
1368
+ 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
1369
+ maxToREstimate:
1370
+ type: timestamp
1371
+ description: |-
1372
+ 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.
1373
+ 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
1374
+ likelyToREstimate :
1375
+ type: timestamp
1376
+ description: |-
1377
+ 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.
1378
+ 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
1379
+ ToRConfidence:
1380
+ type: integer
1381
+ description: Confidence of the likelyToREstimate. 0-100%
1382
+ range: "[0-100]"
1383
+ commands:
1384
+ M0010:
1385
+ description: |-
1386
+ Start of signal group. Orders a signal group to green.
1387
+ 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.
1388
+ 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).
1389
+ Requires security code 2
1390
+ arguments:
1391
+ status:
1392
+ type: boolean
1393
+ description: |-
1394
+ False: No command (default)
1395
+ True: Order a signal group to green
1396
+ securityCode:
1397
+ type: string
1398
+ description: Security code 2
1399
+ command: setStart
1400
+ M0011:
1401
+ description: |-
1402
+ Stop of signal group. Orders a signal group to red.
1403
+ 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.
1404
+ 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).
1405
+ Requires security code 2
1406
+ arguments:
1407
+ status:
1408
+ type: boolean
1409
+ description: |-
1410
+ False: No command (default)
1411
+ True: Order a signal group to red
1412
+ securityCode:
1413
+ type: string
1414
+ description: Security code 2
1415
+ command: setStop
1416
+ Detector logic:
1417
+ description:
1418
+ alarms:
1419
+ A0301:
1420
+ description: |-
1421
+ Detector error (hardware).
1422
+ Is a "minor fault" defined according to 3.11 in EN12675.
1423
+ priority: 3
1424
+ category: D
1425
+ arguments:
1426
+ detector:
1427
+ type: string
1428
+ description: Designation of the detector (hardware)
1429
+ range: "[designation]"
1430
+ type:
1431
+ type: string
1432
+ description: Type of detector
1433
+ values:
1434
+ loop: Inductive detector loop
1435
+ input: External input
1436
+ errormode:
1437
+ type: string
1438
+ description: Detector forced on/off while detector error
1439
+ values: ['on','off']
1440
+ manual:
1441
+ type: boolean
1442
+ description: Manually controlled detector logic (True/False)
1443
+ A0302:
1444
+ description: |-
1445
+ Detector error (logic error).
1446
+ For instance; detector continuously on or off during an extended time.
1447
+ Is a "minor fault" defined according to 3.11 in EN12675.
1448
+ priority: 3
1449
+ category: D
1450
+ arguments:
1451
+ detector:
1452
+ type: string
1453
+ description: Designation of the detector (hardware)
1454
+ range: "[designation]"
1455
+ type:
1456
+ type: string
1457
+ description: Type of detector.
1458
+ values:
1459
+ loop: Inductive detector loop
1460
+ input: External input
1461
+ errormode:
1462
+ type: string
1463
+ description: Detector forced on/off while detector error
1464
+ values: ['on','off']
1465
+ manual:
1466
+ type: boolean
1467
+ description: Manually controlled detector logic (True/False)
1468
+ logicerror:
1469
+ type: string
1470
+ description: Type of logic error
1471
+ values:
1472
+ always_off: no detection during predefined max time
1473
+ always_on: detection constantly on during predefined max time
1474
+ intermittent: intermittent logic fault (flutter)
1475
+ statuses:
1476
+ S0201:
1477
+ description: |-
1478
+ Traffic Counting: Number of vehicles.
1479
+ Used for Traffic counting.
1480
+ arguments:
1481
+ starttime:
1482
+ type: timestamp
1483
+ description: Time stamp for start of measuring. Format according to W3C
1484
+ XML dateTime with a resolution of 3 decimal places. All time stamps
1485
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
1486
+ vehicles:
1487
+ type: long
1488
+ description: Number of vehicles on a given detector logic (since last
1489
+ update)
1490
+ range: "[number]"
1491
+ S0202:
1492
+ description: |-
1493
+ Traffic Counting: Vehicle speed.
1494
+ Used for Traffic counting.
1495
+ arguments:
1496
+ starttime:
1497
+ type: timestamp
1498
+ description: |-
1499
+ Time stamp for start of measuring. Format according to W3C
1500
+ XML dateTime with a resolution of 3 decimal places. All time stamps
1501
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
1502
+ speed:
1503
+ type: integer
1504
+ description: Average speed in km/h
1505
+ range: "[speed]"
1506
+ S0203:
1507
+ description: |-
1508
+ Traffic Counting: Occupancy.
1509
+ Used for Traffic counting.
1510
+ arguments:
1511
+ starttime:
1512
+ type: timestamp
1513
+ description: |-
1514
+ Time stamp for start of measuring. Format according to W3C
1515
+ XML dateTime with a resolution of 3 decimal places. All time stamps
1516
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
1517
+ occupancy:
1518
+ type: integer
1519
+ description: Occupancy in percent (0-100%)
1520
+ range: "[0-100]"
1521
+ S0204:
1522
+ description: |-
1523
+ Traffic Counting: Number of vehicles of given classification.
1524
+ Used for Traffic counting.
1525
+ arguments:
1526
+ starttime:
1527
+ type: timestamp
1528
+ description: |-
1529
+ Time stamp for start of measuring. Format according to W3C
1530
+ XML dateTime with a resolution of 3 decimal places. All time stamps
1531
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
1532
+ P:
1533
+ type: long
1534
+ description: Number of cars
1535
+ range: "[number]"
1536
+ PS:
1537
+ type: long
1538
+ description: Number of cars with trailers
1539
+ range: "[number]"
1540
+ L:
1541
+ type: long
1542
+ description: Number of trucks
1543
+ range: "[number]"
1544
+ LS:
1545
+ type: long
1546
+ description: Number of trucks with trailers
1547
+ range: "[number]"
1548
+ B:
1549
+ type: long
1550
+ description: Number of busses
1551
+ range: "[number]"
1552
+ SP:
1553
+ type: long
1554
+ description: Number of trams
1555
+ range: "[number]"
1556
+ MC:
1557
+ type: long
1558
+ description: Number of motor cycles
1559
+ range: "[number]"
1560
+ C:
1561
+ type: long
1562
+ description: Number of bicycles
1563
+ range: "[number]"
1564
+ F:
1565
+ type: long
1566
+ description: Number of pedestrians
1567
+ range: "[number]"
1568
+ commands:
1569
+ M0008:
1570
+ description: |-
1571
+ Sets manual activation of detector logic.
1572
+ Set given detector logic (1-255) to either true or false.
1573
+ Can e.g. be used to connect RSMP compatible detection equipment to the traffic light controller. Can also be used for prioritization.
1574
+ Requires security code 2
1575
+ arguments:
1576
+ status:
1577
+ type: boolean
1578
+ description: |-
1579
+ False: Deactivate manual control of detector logic
1580
+ True: Activate manual control of detector logic
1581
+ securityCode:
1582
+ type: string
1583
+ description: Security code 2
1584
+ mode:
1585
+ type: boolean
1586
+ description: |-
1587
+ False: Deactivate detector logic
1588
+ True: Activate detector logic
1589
+ command: setForceDetectorLogic