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