rsmp 0.42.9 → 0.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (993) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +2 -0
  3. data/CHANGELOG.md +7 -1
  4. data/Gemfile.lock +3 -5
  5. data/Rakefile +36 -0
  6. data/lib/rsmp/cli.rb +19 -32
  7. data/lib/rsmp/convert/export/json_schema/items.rb +55 -0
  8. data/lib/rsmp/convert/export/json_schema/outputs.rb +147 -0
  9. data/lib/rsmp/convert/export/json_schema/values.rb +120 -0
  10. data/lib/rsmp/convert/export/json_schema.rb +58 -0
  11. data/lib/rsmp/message.rb +0 -2
  12. data/lib/rsmp/schema.rb +210 -0
  13. data/lib/rsmp/schema_error.rb +19 -0
  14. data/lib/rsmp/version.rb +1 -1
  15. data/lib/rsmp.rb +6 -2
  16. data/rsmp.gemspec +2 -1
  17. data/schemas/core/3.1.2/aggregated_status.json +25 -0
  18. data/schemas/core/3.1.2/alarm.json +67 -0
  19. data/schemas/core/3.1.2/alarm_acknowledge.json +12 -0
  20. data/schemas/core/3.1.2/alarm_issue.json +47 -0
  21. data/schemas/core/3.1.2/alarm_suspend_resume.json +3 -0
  22. data/schemas/core/3.1.2/alarm_suspended_resumed.json +47 -0
  23. data/schemas/core/3.1.2/command_request.json +24 -0
  24. data/schemas/core/3.1.2/command_response.json +34 -0
  25. data/schemas/core/3.1.2/core.json +38 -0
  26. data/schemas/core/3.1.2/definitions.json +67 -0
  27. data/schemas/core/3.1.2/message_ack.json +11 -0
  28. data/schemas/core/3.1.2/message_not_ack.json +15 -0
  29. data/schemas/core/3.1.2/rsmp.json +124 -0
  30. data/schemas/core/3.1.2/status.json +21 -0
  31. data/schemas/core/3.1.2/status_request.json +5 -0
  32. data/schemas/core/3.1.2/status_response.json +26 -0
  33. data/schemas/core/3.1.2/status_subscribe.json +27 -0
  34. data/schemas/core/3.1.2/status_unsubscribe.json +5 -0
  35. data/schemas/core/3.1.2/status_update.json +26 -0
  36. data/schemas/core/3.1.2/version.json +47 -0
  37. data/schemas/core/3.1.2/watchdog.json +9 -0
  38. data/schemas/core/3.1.3/aggregated_status.json +25 -0
  39. data/schemas/core/3.1.3/alarm.json +67 -0
  40. data/schemas/core/3.1.3/alarm_acknowledge.json +12 -0
  41. data/schemas/core/3.1.3/alarm_issue.json +47 -0
  42. data/schemas/core/3.1.3/alarm_suspend_resume.json +3 -0
  43. data/schemas/core/3.1.3/alarm_suspended_resumed.json +47 -0
  44. data/schemas/core/3.1.3/command_request.json +24 -0
  45. data/schemas/core/3.1.3/command_response.json +34 -0
  46. data/schemas/core/3.1.3/core.json +38 -0
  47. data/schemas/core/3.1.3/definitions.json +67 -0
  48. data/schemas/core/3.1.3/message_ack.json +11 -0
  49. data/schemas/core/3.1.3/message_not_ack.json +15 -0
  50. data/schemas/core/3.1.3/rsmp.json +124 -0
  51. data/schemas/core/3.1.3/status.json +21 -0
  52. data/schemas/core/3.1.3/status_request.json +5 -0
  53. data/schemas/core/3.1.3/status_response.json +41 -0
  54. data/schemas/core/3.1.3/status_subscribe.json +27 -0
  55. data/schemas/core/3.1.3/status_unsubscribe.json +5 -0
  56. data/schemas/core/3.1.3/status_update.json +41 -0
  57. data/schemas/core/3.1.3/version.json +47 -0
  58. data/schemas/core/3.1.3/watchdog.json +9 -0
  59. data/schemas/core/3.1.4/aggregated_status.json +25 -0
  60. data/schemas/core/3.1.4/alarm.json +65 -0
  61. data/schemas/core/3.1.4/alarm_acknowledge.json +12 -0
  62. data/schemas/core/3.1.4/alarm_issue.json +47 -0
  63. data/schemas/core/3.1.4/alarm_suspend_resume.json +3 -0
  64. data/schemas/core/3.1.4/alarm_suspended_resumed.json +47 -0
  65. data/schemas/core/3.1.4/command_request.json +24 -0
  66. data/schemas/core/3.1.4/command_response.json +34 -0
  67. data/schemas/core/3.1.4/core.json +38 -0
  68. data/schemas/core/3.1.4/definitions.json +67 -0
  69. data/schemas/core/3.1.4/message_ack.json +11 -0
  70. data/schemas/core/3.1.4/message_not_ack.json +15 -0
  71. data/schemas/core/3.1.4/rsmp.json +124 -0
  72. data/schemas/core/3.1.4/status.json +21 -0
  73. data/schemas/core/3.1.4/status_request.json +5 -0
  74. data/schemas/core/3.1.4/status_response.json +41 -0
  75. data/schemas/core/3.1.4/status_subscribe.json +27 -0
  76. data/schemas/core/3.1.4/status_unsubscribe.json +5 -0
  77. data/schemas/core/3.1.4/status_update.json +41 -0
  78. data/schemas/core/3.1.4/version.json +47 -0
  79. data/schemas/core/3.1.4/watchdog.json +9 -0
  80. data/schemas/core/3.1.5/aggregated_status.json +25 -0
  81. data/schemas/core/3.1.5/aggregated_status_request.json +9 -0
  82. data/schemas/core/3.1.5/alarm.json +75 -0
  83. data/schemas/core/3.1.5/alarm_acknowledge.json +12 -0
  84. data/schemas/core/3.1.5/alarm_issue.json +47 -0
  85. data/schemas/core/3.1.5/alarm_request.json +3 -0
  86. data/schemas/core/3.1.5/alarm_suspend_resume.json +3 -0
  87. data/schemas/core/3.1.5/alarm_suspended_resumed.json +47 -0
  88. data/schemas/core/3.1.5/command_request.json +24 -0
  89. data/schemas/core/3.1.5/command_response.json +34 -0
  90. data/schemas/core/3.1.5/core.json +39 -0
  91. data/schemas/core/3.1.5/definitions.json +67 -0
  92. data/schemas/core/3.1.5/message_ack.json +11 -0
  93. data/schemas/core/3.1.5/message_not_ack.json +15 -0
  94. data/schemas/core/3.1.5/rsmp.json +133 -0
  95. data/schemas/core/3.1.5/status.json +21 -0
  96. data/schemas/core/3.1.5/status_request.json +5 -0
  97. data/schemas/core/3.1.5/status_response.json +41 -0
  98. data/schemas/core/3.1.5/status_subscribe.json +31 -0
  99. data/schemas/core/3.1.5/status_unsubscribe.json +5 -0
  100. data/schemas/core/3.1.5/status_update.json +41 -0
  101. data/schemas/core/3.1.5/version.json +47 -0
  102. data/schemas/core/3.1.5/watchdog.json +9 -0
  103. data/schemas/core/3.2.0/aggregated_status.json +25 -0
  104. data/schemas/core/3.2.0/aggregated_status_request.json +9 -0
  105. data/schemas/core/3.2.0/alarm.json +71 -0
  106. data/schemas/core/3.2.0/alarm_acknowledge.json +11 -0
  107. data/schemas/core/3.2.0/alarm_issue.json +44 -0
  108. data/schemas/core/3.2.0/alarm_request.json +3 -0
  109. data/schemas/core/3.2.0/alarm_suspend_resume.json +3 -0
  110. data/schemas/core/3.2.0/alarm_suspended_resumed.json +44 -0
  111. data/schemas/core/3.2.0/command_request.json +24 -0
  112. data/schemas/core/3.2.0/command_response.json +34 -0
  113. data/schemas/core/3.2.0/core.json +39 -0
  114. data/schemas/core/3.2.0/definitions.json +67 -0
  115. data/schemas/core/3.2.0/message_ack.json +11 -0
  116. data/schemas/core/3.2.0/message_not_ack.json +15 -0
  117. data/schemas/core/3.2.0/rsmp.json +133 -0
  118. data/schemas/core/3.2.0/status.json +21 -0
  119. data/schemas/core/3.2.0/status_request.json +5 -0
  120. data/schemas/core/3.2.0/status_response.json +41 -0
  121. data/schemas/core/3.2.0/status_subscribe.json +31 -0
  122. data/schemas/core/3.2.0/status_unsubscribe.json +5 -0
  123. data/schemas/core/3.2.0/status_update.json +41 -0
  124. data/schemas/core/3.2.0/version.json +47 -0
  125. data/schemas/core/3.2.0/watchdog.json +9 -0
  126. data/schemas/core/3.2.1/aggregated_status.json +25 -0
  127. data/schemas/core/3.2.1/aggregated_status_request.json +9 -0
  128. data/schemas/core/3.2.1/alarm.json +71 -0
  129. data/schemas/core/3.2.1/alarm_acknowledge.json +11 -0
  130. data/schemas/core/3.2.1/alarm_issue.json +44 -0
  131. data/schemas/core/3.2.1/alarm_request.json +3 -0
  132. data/schemas/core/3.2.1/alarm_suspend_resume.json +3 -0
  133. data/schemas/core/3.2.1/alarm_suspended_resumed.json +44 -0
  134. data/schemas/core/3.2.1/command_request.json +24 -0
  135. data/schemas/core/3.2.1/command_response.json +34 -0
  136. data/schemas/core/3.2.1/core.json +39 -0
  137. data/schemas/core/3.2.1/definitions.json +67 -0
  138. data/schemas/core/3.2.1/message_ack.json +11 -0
  139. data/schemas/core/3.2.1/message_not_ack.json +15 -0
  140. data/schemas/core/3.2.1/rsmp.json +133 -0
  141. data/schemas/core/3.2.1/status.json +21 -0
  142. data/schemas/core/3.2.1/status_request.json +5 -0
  143. data/schemas/core/3.2.1/status_response.json +41 -0
  144. data/schemas/core/3.2.1/status_subscribe.json +31 -0
  145. data/schemas/core/3.2.1/status_unsubscribe.json +5 -0
  146. data/schemas/core/3.2.1/status_update.json +41 -0
  147. data/schemas/core/3.2.1/version.json +47 -0
  148. data/schemas/core/3.2.1/watchdog.json +9 -0
  149. data/schemas/core/3.2.2/aggregated_status.json +25 -0
  150. data/schemas/core/3.2.2/aggregated_status_request.json +9 -0
  151. data/schemas/core/3.2.2/alarm.json +71 -0
  152. data/schemas/core/3.2.2/alarm_acknowledge.json +11 -0
  153. data/schemas/core/3.2.2/alarm_issue.json +44 -0
  154. data/schemas/core/3.2.2/alarm_request.json +3 -0
  155. data/schemas/core/3.2.2/alarm_suspend_resume.json +3 -0
  156. data/schemas/core/3.2.2/alarm_suspended_resumed.json +44 -0
  157. data/schemas/core/3.2.2/command_request.json +24 -0
  158. data/schemas/core/3.2.2/command_response.json +34 -0
  159. data/schemas/core/3.2.2/core.json +39 -0
  160. data/schemas/core/3.2.2/definitions.json +67 -0
  161. data/schemas/core/3.2.2/message_ack.json +11 -0
  162. data/schemas/core/3.2.2/message_not_ack.json +15 -0
  163. data/schemas/core/3.2.2/rsmp.json +133 -0
  164. data/schemas/core/3.2.2/status.json +21 -0
  165. data/schemas/core/3.2.2/status_request.json +5 -0
  166. data/schemas/core/3.2.2/status_response.json +41 -0
  167. data/schemas/core/3.2.2/status_subscribe.json +31 -0
  168. data/schemas/core/3.2.2/status_unsubscribe.json +5 -0
  169. data/schemas/core/3.2.2/status_update.json +41 -0
  170. data/schemas/core/3.2.2/version.json +47 -0
  171. data/schemas/core/3.2.2/watchdog.json +9 -0
  172. data/schemas/tlc/1.0.10/alarms/A0001.json +4 -0
  173. data/schemas/tlc/1.0.10/alarms/A0002.json +4 -0
  174. data/schemas/tlc/1.0.10/alarms/A0003.json +4 -0
  175. data/schemas/tlc/1.0.10/alarms/A0004.json +4 -0
  176. data/schemas/tlc/1.0.10/alarms/A0005.json +4 -0
  177. data/schemas/tlc/1.0.10/alarms/A0006.json +4 -0
  178. data/schemas/tlc/1.0.10/alarms/A0007.json +4 -0
  179. data/schemas/tlc/1.0.10/alarms/A0008.json +30 -0
  180. data/schemas/tlc/1.0.10/alarms/A0009.json +4 -0
  181. data/schemas/tlc/1.0.10/alarms/A0101.json +4 -0
  182. data/schemas/tlc/1.0.10/alarms/A0201.json +35 -0
  183. data/schemas/tlc/1.0.10/alarms/A0202.json +35 -0
  184. data/schemas/tlc/1.0.10/alarms/A0301.json +92 -0
  185. data/schemas/tlc/1.0.10/alarms/A0302.json +115 -0
  186. data/schemas/tlc/1.0.10/alarms/alarms.json +239 -0
  187. data/schemas/tlc/1.0.10/commands/M0001.json +92 -0
  188. data/schemas/tlc/1.0.10/commands/M0002.json +69 -0
  189. data/schemas/tlc/1.0.10/commands/M0003.json +69 -0
  190. data/schemas/tlc/1.0.10/commands/M0004.json +51 -0
  191. data/schemas/tlc/1.0.10/commands/M0005.json +69 -0
  192. data/schemas/tlc/1.0.10/commands/M0006.json +69 -0
  193. data/schemas/tlc/1.0.10/commands/M0007.json +51 -0
  194. data/schemas/tlc/1.0.10/commands/M0008.json +69 -0
  195. data/schemas/tlc/1.0.10/commands/M0010.json +51 -0
  196. data/schemas/tlc/1.0.10/commands/M0011.json +51 -0
  197. data/schemas/tlc/1.0.10/commands/M0012.json +51 -0
  198. data/schemas/tlc/1.0.10/commands/M0013.json +51 -0
  199. data/schemas/tlc/1.0.10/commands/M0019.json +87 -0
  200. data/schemas/tlc/1.0.10/commands/M0103.json +72 -0
  201. data/schemas/tlc/1.0.10/commands/M0104.json +141 -0
  202. data/schemas/tlc/1.0.10/commands/command_requests.json +8 -0
  203. data/schemas/tlc/1.0.10/commands/command_responses.json +8 -0
  204. data/schemas/tlc/1.0.10/commands/commands.json +255 -0
  205. data/schemas/tlc/1.0.10/defs/definitions.json +67 -0
  206. data/schemas/tlc/1.0.10/defs/guards.json +24 -0
  207. data/schemas/tlc/1.0.10/rsmp.json +74 -0
  208. data/schemas/tlc/1.0.10/statuses/S0001.json +91 -0
  209. data/schemas/tlc/1.0.10/statuses/S0002.json +36 -0
  210. data/schemas/tlc/1.0.10/statuses/S0003.json +54 -0
  211. data/schemas/tlc/1.0.10/statuses/S0004.json +54 -0
  212. data/schemas/tlc/1.0.10/statuses/S0005.json +36 -0
  213. data/schemas/tlc/1.0.10/statuses/S0006.json +54 -0
  214. data/schemas/tlc/1.0.10/statuses/S0007.json +54 -0
  215. data/schemas/tlc/1.0.10/statuses/S0008.json +54 -0
  216. data/schemas/tlc/1.0.10/statuses/S0009.json +54 -0
  217. data/schemas/tlc/1.0.10/statuses/S0010.json +54 -0
  218. data/schemas/tlc/1.0.10/statuses/S0011.json +54 -0
  219. data/schemas/tlc/1.0.10/statuses/S0012.json +54 -0
  220. data/schemas/tlc/1.0.10/statuses/S0013.json +54 -0
  221. data/schemas/tlc/1.0.10/statuses/S0014.json +36 -0
  222. data/schemas/tlc/1.0.10/statuses/S0015.json +36 -0
  223. data/schemas/tlc/1.0.10/statuses/S0016.json +36 -0
  224. data/schemas/tlc/1.0.10/statuses/S0017.json +36 -0
  225. data/schemas/tlc/1.0.10/statuses/S0018.json +36 -0
  226. data/schemas/tlc/1.0.10/statuses/S0019.json +36 -0
  227. data/schemas/tlc/1.0.10/statuses/S0020.json +54 -0
  228. data/schemas/tlc/1.0.10/statuses/S0021.json +37 -0
  229. data/schemas/tlc/1.0.10/statuses/S0091.json +57 -0
  230. data/schemas/tlc/1.0.10/statuses/S0092.json +57 -0
  231. data/schemas/tlc/1.0.10/statuses/S0095.json +36 -0
  232. data/schemas/tlc/1.0.10/statuses/S0096.json +126 -0
  233. data/schemas/tlc/1.0.10/statuses/S0201.json +54 -0
  234. data/schemas/tlc/1.0.10/statuses/S0202.json +54 -0
  235. data/schemas/tlc/1.0.10/statuses/S0203.json +54 -0
  236. data/schemas/tlc/1.0.10/statuses/S0204.json +198 -0
  237. data/schemas/tlc/1.0.10/statuses/statuses.json +483 -0
  238. data/schemas/tlc/1.0.10/sxl.yaml +1010 -0
  239. data/schemas/tlc/1.0.13/alarms/A0001.json +4 -0
  240. data/schemas/tlc/1.0.13/alarms/A0002.json +4 -0
  241. data/schemas/tlc/1.0.13/alarms/A0003.json +4 -0
  242. data/schemas/tlc/1.0.13/alarms/A0004.json +4 -0
  243. data/schemas/tlc/1.0.13/alarms/A0005.json +4 -0
  244. data/schemas/tlc/1.0.13/alarms/A0006.json +4 -0
  245. data/schemas/tlc/1.0.13/alarms/A0007.json +4 -0
  246. data/schemas/tlc/1.0.13/alarms/A0008.json +30 -0
  247. data/schemas/tlc/1.0.13/alarms/A0009.json +4 -0
  248. data/schemas/tlc/1.0.13/alarms/A0101.json +4 -0
  249. data/schemas/tlc/1.0.13/alarms/A0201.json +35 -0
  250. data/schemas/tlc/1.0.13/alarms/A0202.json +35 -0
  251. data/schemas/tlc/1.0.13/alarms/A0301.json +92 -0
  252. data/schemas/tlc/1.0.13/alarms/A0302.json +115 -0
  253. data/schemas/tlc/1.0.13/alarms/alarms.json +239 -0
  254. data/schemas/tlc/1.0.13/commands/M0001.json +92 -0
  255. data/schemas/tlc/1.0.13/commands/M0002.json +69 -0
  256. data/schemas/tlc/1.0.13/commands/M0003.json +69 -0
  257. data/schemas/tlc/1.0.13/commands/M0004.json +51 -0
  258. data/schemas/tlc/1.0.13/commands/M0005.json +69 -0
  259. data/schemas/tlc/1.0.13/commands/M0006.json +69 -0
  260. data/schemas/tlc/1.0.13/commands/M0007.json +51 -0
  261. data/schemas/tlc/1.0.13/commands/M0008.json +69 -0
  262. data/schemas/tlc/1.0.13/commands/M0010.json +51 -0
  263. data/schemas/tlc/1.0.13/commands/M0011.json +51 -0
  264. data/schemas/tlc/1.0.13/commands/M0012.json +51 -0
  265. data/schemas/tlc/1.0.13/commands/M0013.json +51 -0
  266. data/schemas/tlc/1.0.13/commands/M0014.json +69 -0
  267. data/schemas/tlc/1.0.13/commands/M0015.json +69 -0
  268. data/schemas/tlc/1.0.13/commands/M0016.json +51 -0
  269. data/schemas/tlc/1.0.13/commands/M0017.json +51 -0
  270. data/schemas/tlc/1.0.13/commands/M0018.json +69 -0
  271. data/schemas/tlc/1.0.13/commands/M0019.json +87 -0
  272. data/schemas/tlc/1.0.13/commands/M0103.json +72 -0
  273. data/schemas/tlc/1.0.13/commands/M0104.json +141 -0
  274. data/schemas/tlc/1.0.13/commands/command_requests.json +8 -0
  275. data/schemas/tlc/1.0.13/commands/command_responses.json +8 -0
  276. data/schemas/tlc/1.0.13/commands/commands.json +335 -0
  277. data/schemas/tlc/1.0.13/defs/definitions.json +67 -0
  278. data/schemas/tlc/1.0.13/defs/guards.json +24 -0
  279. data/schemas/tlc/1.0.13/rsmp.json +74 -0
  280. data/schemas/tlc/1.0.13/statuses/S0001.json +91 -0
  281. data/schemas/tlc/1.0.13/statuses/S0002.json +36 -0
  282. data/schemas/tlc/1.0.13/statuses/S0003.json +54 -0
  283. data/schemas/tlc/1.0.13/statuses/S0004.json +54 -0
  284. data/schemas/tlc/1.0.13/statuses/S0005.json +36 -0
  285. data/schemas/tlc/1.0.13/statuses/S0006.json +54 -0
  286. data/schemas/tlc/1.0.13/statuses/S0007.json +54 -0
  287. data/schemas/tlc/1.0.13/statuses/S0008.json +54 -0
  288. data/schemas/tlc/1.0.13/statuses/S0009.json +54 -0
  289. data/schemas/tlc/1.0.13/statuses/S0010.json +54 -0
  290. data/schemas/tlc/1.0.13/statuses/S0011.json +54 -0
  291. data/schemas/tlc/1.0.13/statuses/S0012.json +54 -0
  292. data/schemas/tlc/1.0.13/statuses/S0013.json +54 -0
  293. data/schemas/tlc/1.0.13/statuses/S0014.json +36 -0
  294. data/schemas/tlc/1.0.13/statuses/S0015.json +36 -0
  295. data/schemas/tlc/1.0.13/statuses/S0016.json +36 -0
  296. data/schemas/tlc/1.0.13/statuses/S0017.json +36 -0
  297. data/schemas/tlc/1.0.13/statuses/S0018.json +36 -0
  298. data/schemas/tlc/1.0.13/statuses/S0019.json +36 -0
  299. data/schemas/tlc/1.0.13/statuses/S0020.json +54 -0
  300. data/schemas/tlc/1.0.13/statuses/S0021.json +37 -0
  301. data/schemas/tlc/1.0.13/statuses/S0022.json +36 -0
  302. data/schemas/tlc/1.0.13/statuses/S0023.json +37 -0
  303. data/schemas/tlc/1.0.13/statuses/S0024.json +37 -0
  304. data/schemas/tlc/1.0.13/statuses/S0025.json +162 -0
  305. data/schemas/tlc/1.0.13/statuses/S0026.json +36 -0
  306. data/schemas/tlc/1.0.13/statuses/S0027.json +36 -0
  307. data/schemas/tlc/1.0.13/statuses/S0028.json +36 -0
  308. data/schemas/tlc/1.0.13/statuses/S0029.json +36 -0
  309. data/schemas/tlc/1.0.13/statuses/S0091.json +57 -0
  310. data/schemas/tlc/1.0.13/statuses/S0092.json +57 -0
  311. data/schemas/tlc/1.0.13/statuses/S0095.json +36 -0
  312. data/schemas/tlc/1.0.13/statuses/S0096.json +126 -0
  313. data/schemas/tlc/1.0.13/statuses/S0201.json +54 -0
  314. data/schemas/tlc/1.0.13/statuses/S0202.json +54 -0
  315. data/schemas/tlc/1.0.13/statuses/S0203.json +54 -0
  316. data/schemas/tlc/1.0.13/statuses/S0204.json +198 -0
  317. data/schemas/tlc/1.0.13/statuses/statuses.json +611 -0
  318. data/schemas/tlc/1.0.13/sxl.yaml +1312 -0
  319. data/schemas/tlc/1.0.14/alarms/A0001.json +4 -0
  320. data/schemas/tlc/1.0.14/alarms/A0002.json +4 -0
  321. data/schemas/tlc/1.0.14/alarms/A0003.json +4 -0
  322. data/schemas/tlc/1.0.14/alarms/A0004.json +4 -0
  323. data/schemas/tlc/1.0.14/alarms/A0005.json +4 -0
  324. data/schemas/tlc/1.0.14/alarms/A0006.json +4 -0
  325. data/schemas/tlc/1.0.14/alarms/A0007.json +4 -0
  326. data/schemas/tlc/1.0.14/alarms/A0008.json +30 -0
  327. data/schemas/tlc/1.0.14/alarms/A0009.json +4 -0
  328. data/schemas/tlc/1.0.14/alarms/A0101.json +4 -0
  329. data/schemas/tlc/1.0.14/alarms/A0201.json +35 -0
  330. data/schemas/tlc/1.0.14/alarms/A0202.json +35 -0
  331. data/schemas/tlc/1.0.14/alarms/A0301.json +92 -0
  332. data/schemas/tlc/1.0.14/alarms/A0302.json +115 -0
  333. data/schemas/tlc/1.0.14/alarms/alarms.json +239 -0
  334. data/schemas/tlc/1.0.14/commands/M0001.json +92 -0
  335. data/schemas/tlc/1.0.14/commands/M0002.json +69 -0
  336. data/schemas/tlc/1.0.14/commands/M0003.json +69 -0
  337. data/schemas/tlc/1.0.14/commands/M0004.json +51 -0
  338. data/schemas/tlc/1.0.14/commands/M0005.json +69 -0
  339. data/schemas/tlc/1.0.14/commands/M0006.json +69 -0
  340. data/schemas/tlc/1.0.14/commands/M0007.json +51 -0
  341. data/schemas/tlc/1.0.14/commands/M0008.json +69 -0
  342. data/schemas/tlc/1.0.14/commands/M0010.json +51 -0
  343. data/schemas/tlc/1.0.14/commands/M0011.json +51 -0
  344. data/schemas/tlc/1.0.14/commands/M0012.json +51 -0
  345. data/schemas/tlc/1.0.14/commands/M0013.json +51 -0
  346. data/schemas/tlc/1.0.14/commands/M0014.json +69 -0
  347. data/schemas/tlc/1.0.14/commands/M0015.json +69 -0
  348. data/schemas/tlc/1.0.14/commands/M0016.json +51 -0
  349. data/schemas/tlc/1.0.14/commands/M0017.json +51 -0
  350. data/schemas/tlc/1.0.14/commands/M0018.json +69 -0
  351. data/schemas/tlc/1.0.14/commands/M0019.json +87 -0
  352. data/schemas/tlc/1.0.14/commands/M0103.json +72 -0
  353. data/schemas/tlc/1.0.14/commands/M0104.json +141 -0
  354. data/schemas/tlc/1.0.14/commands/command_requests.json +8 -0
  355. data/schemas/tlc/1.0.14/commands/command_responses.json +8 -0
  356. data/schemas/tlc/1.0.14/commands/commands.json +335 -0
  357. data/schemas/tlc/1.0.14/defs/definitions.json +67 -0
  358. data/schemas/tlc/1.0.14/defs/guards.json +24 -0
  359. data/schemas/tlc/1.0.14/rsmp.json +74 -0
  360. data/schemas/tlc/1.0.14/statuses/S0001.json +91 -0
  361. data/schemas/tlc/1.0.14/statuses/S0002.json +36 -0
  362. data/schemas/tlc/1.0.14/statuses/S0003.json +54 -0
  363. data/schemas/tlc/1.0.14/statuses/S0004.json +54 -0
  364. data/schemas/tlc/1.0.14/statuses/S0005.json +36 -0
  365. data/schemas/tlc/1.0.14/statuses/S0006.json +54 -0
  366. data/schemas/tlc/1.0.14/statuses/S0007.json +54 -0
  367. data/schemas/tlc/1.0.14/statuses/S0008.json +54 -0
  368. data/schemas/tlc/1.0.14/statuses/S0009.json +54 -0
  369. data/schemas/tlc/1.0.14/statuses/S0010.json +54 -0
  370. data/schemas/tlc/1.0.14/statuses/S0011.json +54 -0
  371. data/schemas/tlc/1.0.14/statuses/S0012.json +54 -0
  372. data/schemas/tlc/1.0.14/statuses/S0013.json +54 -0
  373. data/schemas/tlc/1.0.14/statuses/S0014.json +36 -0
  374. data/schemas/tlc/1.0.14/statuses/S0015.json +36 -0
  375. data/schemas/tlc/1.0.14/statuses/S0016.json +36 -0
  376. data/schemas/tlc/1.0.14/statuses/S0017.json +36 -0
  377. data/schemas/tlc/1.0.14/statuses/S0018.json +36 -0
  378. data/schemas/tlc/1.0.14/statuses/S0019.json +36 -0
  379. data/schemas/tlc/1.0.14/statuses/S0020.json +54 -0
  380. data/schemas/tlc/1.0.14/statuses/S0021.json +37 -0
  381. data/schemas/tlc/1.0.14/statuses/S0022.json +36 -0
  382. data/schemas/tlc/1.0.14/statuses/S0023.json +37 -0
  383. data/schemas/tlc/1.0.14/statuses/S0024.json +37 -0
  384. data/schemas/tlc/1.0.14/statuses/S0025.json +162 -0
  385. data/schemas/tlc/1.0.14/statuses/S0026.json +36 -0
  386. data/schemas/tlc/1.0.14/statuses/S0027.json +36 -0
  387. data/schemas/tlc/1.0.14/statuses/S0028.json +36 -0
  388. data/schemas/tlc/1.0.14/statuses/S0029.json +36 -0
  389. data/schemas/tlc/1.0.14/statuses/S0091.json +57 -0
  390. data/schemas/tlc/1.0.14/statuses/S0092.json +57 -0
  391. data/schemas/tlc/1.0.14/statuses/S0095.json +36 -0
  392. data/schemas/tlc/1.0.14/statuses/S0096.json +126 -0
  393. data/schemas/tlc/1.0.14/statuses/S0201.json +54 -0
  394. data/schemas/tlc/1.0.14/statuses/S0202.json +54 -0
  395. data/schemas/tlc/1.0.14/statuses/S0203.json +54 -0
  396. data/schemas/tlc/1.0.14/statuses/S0204.json +198 -0
  397. data/schemas/tlc/1.0.14/statuses/S0205.json +54 -0
  398. data/schemas/tlc/1.0.14/statuses/S0206.json +54 -0
  399. data/schemas/tlc/1.0.14/statuses/S0207.json +54 -0
  400. data/schemas/tlc/1.0.14/statuses/S0208.json +198 -0
  401. data/schemas/tlc/1.0.14/statuses/statuses.json +675 -0
  402. data/schemas/tlc/1.0.14/sxl.yaml +1450 -0
  403. data/schemas/tlc/1.0.15/alarms/A0001.json +4 -0
  404. data/schemas/tlc/1.0.15/alarms/A0002.json +4 -0
  405. data/schemas/tlc/1.0.15/alarms/A0003.json +4 -0
  406. data/schemas/tlc/1.0.15/alarms/A0004.json +4 -0
  407. data/schemas/tlc/1.0.15/alarms/A0005.json +4 -0
  408. data/schemas/tlc/1.0.15/alarms/A0006.json +4 -0
  409. data/schemas/tlc/1.0.15/alarms/A0007.json +4 -0
  410. data/schemas/tlc/1.0.15/alarms/A0008.json +30 -0
  411. data/schemas/tlc/1.0.15/alarms/A0009.json +4 -0
  412. data/schemas/tlc/1.0.15/alarms/A0010.json +4 -0
  413. data/schemas/tlc/1.0.15/alarms/A0101.json +4 -0
  414. data/schemas/tlc/1.0.15/alarms/A0201.json +35 -0
  415. data/schemas/tlc/1.0.15/alarms/A0202.json +35 -0
  416. data/schemas/tlc/1.0.15/alarms/A0301.json +92 -0
  417. data/schemas/tlc/1.0.15/alarms/A0302.json +115 -0
  418. data/schemas/tlc/1.0.15/alarms/alarms.json +255 -0
  419. data/schemas/tlc/1.0.15/commands/M0001.json +92 -0
  420. data/schemas/tlc/1.0.15/commands/M0002.json +69 -0
  421. data/schemas/tlc/1.0.15/commands/M0003.json +69 -0
  422. data/schemas/tlc/1.0.15/commands/M0004.json +51 -0
  423. data/schemas/tlc/1.0.15/commands/M0005.json +69 -0
  424. data/schemas/tlc/1.0.15/commands/M0006.json +69 -0
  425. data/schemas/tlc/1.0.15/commands/M0007.json +51 -0
  426. data/schemas/tlc/1.0.15/commands/M0008.json +69 -0
  427. data/schemas/tlc/1.0.15/commands/M0010.json +51 -0
  428. data/schemas/tlc/1.0.15/commands/M0011.json +51 -0
  429. data/schemas/tlc/1.0.15/commands/M0012.json +51 -0
  430. data/schemas/tlc/1.0.15/commands/M0013.json +51 -0
  431. data/schemas/tlc/1.0.15/commands/M0014.json +69 -0
  432. data/schemas/tlc/1.0.15/commands/M0015.json +69 -0
  433. data/schemas/tlc/1.0.15/commands/M0016.json +51 -0
  434. data/schemas/tlc/1.0.15/commands/M0017.json +51 -0
  435. data/schemas/tlc/1.0.15/commands/M0018.json +69 -0
  436. data/schemas/tlc/1.0.15/commands/M0019.json +87 -0
  437. data/schemas/tlc/1.0.15/commands/M0020.json +87 -0
  438. data/schemas/tlc/1.0.15/commands/M0021.json +51 -0
  439. data/schemas/tlc/1.0.15/commands/M0103.json +72 -0
  440. data/schemas/tlc/1.0.15/commands/M0104.json +141 -0
  441. data/schemas/tlc/1.0.15/commands/command_requests.json +8 -0
  442. data/schemas/tlc/1.0.15/commands/command_responses.json +8 -0
  443. data/schemas/tlc/1.0.15/commands/commands.json +367 -0
  444. data/schemas/tlc/1.0.15/defs/definitions.json +67 -0
  445. data/schemas/tlc/1.0.15/defs/guards.json +24 -0
  446. data/schemas/tlc/1.0.15/rsmp.json +74 -0
  447. data/schemas/tlc/1.0.15/statuses/S0001.json +91 -0
  448. data/schemas/tlc/1.0.15/statuses/S0002.json +36 -0
  449. data/schemas/tlc/1.0.15/statuses/S0003.json +54 -0
  450. data/schemas/tlc/1.0.15/statuses/S0004.json +54 -0
  451. data/schemas/tlc/1.0.15/statuses/S0005.json +36 -0
  452. data/schemas/tlc/1.0.15/statuses/S0006.json +54 -0
  453. data/schemas/tlc/1.0.15/statuses/S0007.json +54 -0
  454. data/schemas/tlc/1.0.15/statuses/S0008.json +54 -0
  455. data/schemas/tlc/1.0.15/statuses/S0009.json +54 -0
  456. data/schemas/tlc/1.0.15/statuses/S0010.json +54 -0
  457. data/schemas/tlc/1.0.15/statuses/S0011.json +54 -0
  458. data/schemas/tlc/1.0.15/statuses/S0012.json +54 -0
  459. data/schemas/tlc/1.0.15/statuses/S0013.json +54 -0
  460. data/schemas/tlc/1.0.15/statuses/S0014.json +36 -0
  461. data/schemas/tlc/1.0.15/statuses/S0015.json +36 -0
  462. data/schemas/tlc/1.0.15/statuses/S0016.json +36 -0
  463. data/schemas/tlc/1.0.15/statuses/S0017.json +36 -0
  464. data/schemas/tlc/1.0.15/statuses/S0018.json +36 -0
  465. data/schemas/tlc/1.0.15/statuses/S0019.json +36 -0
  466. data/schemas/tlc/1.0.15/statuses/S0020.json +54 -0
  467. data/schemas/tlc/1.0.15/statuses/S0021.json +37 -0
  468. data/schemas/tlc/1.0.15/statuses/S0022.json +36 -0
  469. data/schemas/tlc/1.0.15/statuses/S0023.json +37 -0
  470. data/schemas/tlc/1.0.15/statuses/S0024.json +37 -0
  471. data/schemas/tlc/1.0.15/statuses/S0025.json +162 -0
  472. data/schemas/tlc/1.0.15/statuses/S0026.json +36 -0
  473. data/schemas/tlc/1.0.15/statuses/S0027.json +36 -0
  474. data/schemas/tlc/1.0.15/statuses/S0028.json +36 -0
  475. data/schemas/tlc/1.0.15/statuses/S0029.json +36 -0
  476. data/schemas/tlc/1.0.15/statuses/S0030.json +36 -0
  477. data/schemas/tlc/1.0.15/statuses/S0031.json +36 -0
  478. data/schemas/tlc/1.0.15/statuses/S0091.json +57 -0
  479. data/schemas/tlc/1.0.15/statuses/S0092.json +57 -0
  480. data/schemas/tlc/1.0.15/statuses/S0095.json +36 -0
  481. data/schemas/tlc/1.0.15/statuses/S0096.json +126 -0
  482. data/schemas/tlc/1.0.15/statuses/S0097.json +54 -0
  483. data/schemas/tlc/1.0.15/statuses/S0098.json +72 -0
  484. data/schemas/tlc/1.0.15/statuses/S0201.json +54 -0
  485. data/schemas/tlc/1.0.15/statuses/S0202.json +54 -0
  486. data/schemas/tlc/1.0.15/statuses/S0203.json +54 -0
  487. data/schemas/tlc/1.0.15/statuses/S0204.json +198 -0
  488. data/schemas/tlc/1.0.15/statuses/S0205.json +54 -0
  489. data/schemas/tlc/1.0.15/statuses/S0206.json +54 -0
  490. data/schemas/tlc/1.0.15/statuses/S0207.json +54 -0
  491. data/schemas/tlc/1.0.15/statuses/S0208.json +198 -0
  492. data/schemas/tlc/1.0.15/statuses/statuses.json +739 -0
  493. data/schemas/tlc/1.0.15/sxl.yaml +1589 -0
  494. data/schemas/tlc/1.0.7/alarms/A0001.json +4 -0
  495. data/schemas/tlc/1.0.7/alarms/A0002.json +4 -0
  496. data/schemas/tlc/1.0.7/alarms/A0003.json +4 -0
  497. data/schemas/tlc/1.0.7/alarms/A0004.json +4 -0
  498. data/schemas/tlc/1.0.7/alarms/A0005.json +4 -0
  499. data/schemas/tlc/1.0.7/alarms/A0006.json +4 -0
  500. data/schemas/tlc/1.0.7/alarms/A0007.json +4 -0
  501. data/schemas/tlc/1.0.7/alarms/A0008.json +30 -0
  502. data/schemas/tlc/1.0.7/alarms/A0009.json +4 -0
  503. data/schemas/tlc/1.0.7/alarms/A0101.json +4 -0
  504. data/schemas/tlc/1.0.7/alarms/A0201.json +35 -0
  505. data/schemas/tlc/1.0.7/alarms/A0202.json +35 -0
  506. data/schemas/tlc/1.0.7/alarms/A0301.json +92 -0
  507. data/schemas/tlc/1.0.7/alarms/A0302.json +115 -0
  508. data/schemas/tlc/1.0.7/alarms/alarms.json +239 -0
  509. data/schemas/tlc/1.0.7/commands/M0001.json +92 -0
  510. data/schemas/tlc/1.0.7/commands/M0002.json +69 -0
  511. data/schemas/tlc/1.0.7/commands/M0003.json +69 -0
  512. data/schemas/tlc/1.0.7/commands/M0004.json +51 -0
  513. data/schemas/tlc/1.0.7/commands/M0005.json +69 -0
  514. data/schemas/tlc/1.0.7/commands/M0006.json +69 -0
  515. data/schemas/tlc/1.0.7/commands/M0007.json +51 -0
  516. data/schemas/tlc/1.0.7/commands/M0008.json +69 -0
  517. data/schemas/tlc/1.0.7/commands/M0010.json +51 -0
  518. data/schemas/tlc/1.0.7/commands/M0011.json +51 -0
  519. data/schemas/tlc/1.0.7/commands/M0019.json +87 -0
  520. data/schemas/tlc/1.0.7/commands/M0103.json +72 -0
  521. data/schemas/tlc/1.0.7/commands/M0104.json +141 -0
  522. data/schemas/tlc/1.0.7/commands/command_requests.json +8 -0
  523. data/schemas/tlc/1.0.7/commands/command_responses.json +8 -0
  524. data/schemas/tlc/1.0.7/commands/commands.json +223 -0
  525. data/schemas/tlc/1.0.7/defs/definitions.json +67 -0
  526. data/schemas/tlc/1.0.7/defs/guards.json +24 -0
  527. data/schemas/tlc/1.0.7/rsmp.json +74 -0
  528. data/schemas/tlc/1.0.7/statuses/S0001.json +91 -0
  529. data/schemas/tlc/1.0.7/statuses/S0002.json +36 -0
  530. data/schemas/tlc/1.0.7/statuses/S0003.json +54 -0
  531. data/schemas/tlc/1.0.7/statuses/S0004.json +54 -0
  532. data/schemas/tlc/1.0.7/statuses/S0005.json +36 -0
  533. data/schemas/tlc/1.0.7/statuses/S0006.json +54 -0
  534. data/schemas/tlc/1.0.7/statuses/S0007.json +54 -0
  535. data/schemas/tlc/1.0.7/statuses/S0008.json +54 -0
  536. data/schemas/tlc/1.0.7/statuses/S0009.json +54 -0
  537. data/schemas/tlc/1.0.7/statuses/S0010.json +54 -0
  538. data/schemas/tlc/1.0.7/statuses/S0011.json +54 -0
  539. data/schemas/tlc/1.0.7/statuses/S0012.json +54 -0
  540. data/schemas/tlc/1.0.7/statuses/S0013.json +54 -0
  541. data/schemas/tlc/1.0.7/statuses/S0014.json +36 -0
  542. data/schemas/tlc/1.0.7/statuses/S0015.json +36 -0
  543. data/schemas/tlc/1.0.7/statuses/S0016.json +36 -0
  544. data/schemas/tlc/1.0.7/statuses/S0017.json +36 -0
  545. data/schemas/tlc/1.0.7/statuses/S0018.json +36 -0
  546. data/schemas/tlc/1.0.7/statuses/S0019.json +36 -0
  547. data/schemas/tlc/1.0.7/statuses/S0020.json +54 -0
  548. data/schemas/tlc/1.0.7/statuses/S0021.json +37 -0
  549. data/schemas/tlc/1.0.7/statuses/S0025.json +162 -0
  550. data/schemas/tlc/1.0.7/statuses/S0091.json +57 -0
  551. data/schemas/tlc/1.0.7/statuses/S0092.json +57 -0
  552. data/schemas/tlc/1.0.7/statuses/S0095.json +36 -0
  553. data/schemas/tlc/1.0.7/statuses/S0096.json +126 -0
  554. data/schemas/tlc/1.0.7/statuses/S0201.json +54 -0
  555. data/schemas/tlc/1.0.7/statuses/S0202.json +54 -0
  556. data/schemas/tlc/1.0.7/statuses/S0203.json +54 -0
  557. data/schemas/tlc/1.0.7/statuses/S0204.json +198 -0
  558. data/schemas/tlc/1.0.7/statuses/statuses.json +499 -0
  559. data/schemas/tlc/1.0.7/sxl.yaml +981 -0
  560. data/schemas/tlc/1.0.8/alarms/A0001.json +4 -0
  561. data/schemas/tlc/1.0.8/alarms/A0002.json +4 -0
  562. data/schemas/tlc/1.0.8/alarms/A0003.json +4 -0
  563. data/schemas/tlc/1.0.8/alarms/A0004.json +4 -0
  564. data/schemas/tlc/1.0.8/alarms/A0005.json +4 -0
  565. data/schemas/tlc/1.0.8/alarms/A0006.json +4 -0
  566. data/schemas/tlc/1.0.8/alarms/A0007.json +4 -0
  567. data/schemas/tlc/1.0.8/alarms/A0008.json +30 -0
  568. data/schemas/tlc/1.0.8/alarms/A0009.json +4 -0
  569. data/schemas/tlc/1.0.8/alarms/A0101.json +4 -0
  570. data/schemas/tlc/1.0.8/alarms/A0201.json +35 -0
  571. data/schemas/tlc/1.0.8/alarms/A0202.json +35 -0
  572. data/schemas/tlc/1.0.8/alarms/A0301.json +92 -0
  573. data/schemas/tlc/1.0.8/alarms/A0302.json +115 -0
  574. data/schemas/tlc/1.0.8/alarms/alarms.json +239 -0
  575. data/schemas/tlc/1.0.8/commands/M0001.json +92 -0
  576. data/schemas/tlc/1.0.8/commands/M0002.json +69 -0
  577. data/schemas/tlc/1.0.8/commands/M0003.json +69 -0
  578. data/schemas/tlc/1.0.8/commands/M0004.json +51 -0
  579. data/schemas/tlc/1.0.8/commands/M0005.json +69 -0
  580. data/schemas/tlc/1.0.8/commands/M0006.json +69 -0
  581. data/schemas/tlc/1.0.8/commands/M0007.json +51 -0
  582. data/schemas/tlc/1.0.8/commands/M0008.json +69 -0
  583. data/schemas/tlc/1.0.8/commands/M0010.json +51 -0
  584. data/schemas/tlc/1.0.8/commands/M0011.json +51 -0
  585. data/schemas/tlc/1.0.8/commands/M0012.json +51 -0
  586. data/schemas/tlc/1.0.8/commands/M0013.json +51 -0
  587. data/schemas/tlc/1.0.8/commands/M0019.json +87 -0
  588. data/schemas/tlc/1.0.8/commands/M0103.json +72 -0
  589. data/schemas/tlc/1.0.8/commands/M0104.json +141 -0
  590. data/schemas/tlc/1.0.8/commands/command_requests.json +8 -0
  591. data/schemas/tlc/1.0.8/commands/command_responses.json +8 -0
  592. data/schemas/tlc/1.0.8/commands/commands.json +255 -0
  593. data/schemas/tlc/1.0.8/defs/definitions.json +67 -0
  594. data/schemas/tlc/1.0.8/defs/guards.json +24 -0
  595. data/schemas/tlc/1.0.8/rsmp.json +74 -0
  596. data/schemas/tlc/1.0.8/statuses/S0001.json +91 -0
  597. data/schemas/tlc/1.0.8/statuses/S0002.json +36 -0
  598. data/schemas/tlc/1.0.8/statuses/S0003.json +54 -0
  599. data/schemas/tlc/1.0.8/statuses/S0004.json +54 -0
  600. data/schemas/tlc/1.0.8/statuses/S0005.json +36 -0
  601. data/schemas/tlc/1.0.8/statuses/S0006.json +54 -0
  602. data/schemas/tlc/1.0.8/statuses/S0007.json +54 -0
  603. data/schemas/tlc/1.0.8/statuses/S0008.json +54 -0
  604. data/schemas/tlc/1.0.8/statuses/S0009.json +54 -0
  605. data/schemas/tlc/1.0.8/statuses/S0010.json +54 -0
  606. data/schemas/tlc/1.0.8/statuses/S0011.json +54 -0
  607. data/schemas/tlc/1.0.8/statuses/S0012.json +54 -0
  608. data/schemas/tlc/1.0.8/statuses/S0013.json +54 -0
  609. data/schemas/tlc/1.0.8/statuses/S0014.json +36 -0
  610. data/schemas/tlc/1.0.8/statuses/S0015.json +36 -0
  611. data/schemas/tlc/1.0.8/statuses/S0016.json +36 -0
  612. data/schemas/tlc/1.0.8/statuses/S0017.json +36 -0
  613. data/schemas/tlc/1.0.8/statuses/S0018.json +36 -0
  614. data/schemas/tlc/1.0.8/statuses/S0019.json +36 -0
  615. data/schemas/tlc/1.0.8/statuses/S0020.json +54 -0
  616. data/schemas/tlc/1.0.8/statuses/S0021.json +37 -0
  617. data/schemas/tlc/1.0.8/statuses/S0025.json +181 -0
  618. data/schemas/tlc/1.0.8/statuses/S0091.json +57 -0
  619. data/schemas/tlc/1.0.8/statuses/S0092.json +57 -0
  620. data/schemas/tlc/1.0.8/statuses/S0095.json +36 -0
  621. data/schemas/tlc/1.0.8/statuses/S0096.json +126 -0
  622. data/schemas/tlc/1.0.8/statuses/S0201.json +54 -0
  623. data/schemas/tlc/1.0.8/statuses/S0202.json +54 -0
  624. data/schemas/tlc/1.0.8/statuses/S0203.json +54 -0
  625. data/schemas/tlc/1.0.8/statuses/S0204.json +198 -0
  626. data/schemas/tlc/1.0.8/statuses/statuses.json +483 -0
  627. data/schemas/tlc/1.0.8/sxl.yaml +1010 -0
  628. data/schemas/tlc/1.0.9/alarms/A0001.json +4 -0
  629. data/schemas/tlc/1.0.9/alarms/A0002.json +4 -0
  630. data/schemas/tlc/1.0.9/alarms/A0003.json +4 -0
  631. data/schemas/tlc/1.0.9/alarms/A0004.json +4 -0
  632. data/schemas/tlc/1.0.9/alarms/A0005.json +4 -0
  633. data/schemas/tlc/1.0.9/alarms/A0006.json +4 -0
  634. data/schemas/tlc/1.0.9/alarms/A0007.json +4 -0
  635. data/schemas/tlc/1.0.9/alarms/A0008.json +30 -0
  636. data/schemas/tlc/1.0.9/alarms/A0009.json +4 -0
  637. data/schemas/tlc/1.0.9/alarms/A0101.json +4 -0
  638. data/schemas/tlc/1.0.9/alarms/A0201.json +35 -0
  639. data/schemas/tlc/1.0.9/alarms/A0202.json +35 -0
  640. data/schemas/tlc/1.0.9/alarms/A0301.json +92 -0
  641. data/schemas/tlc/1.0.9/alarms/A0302.json +115 -0
  642. data/schemas/tlc/1.0.9/alarms/alarms.json +239 -0
  643. data/schemas/tlc/1.0.9/commands/M0001.json +92 -0
  644. data/schemas/tlc/1.0.9/commands/M0002.json +69 -0
  645. data/schemas/tlc/1.0.9/commands/M0003.json +69 -0
  646. data/schemas/tlc/1.0.9/commands/M0004.json +51 -0
  647. data/schemas/tlc/1.0.9/commands/M0005.json +69 -0
  648. data/schemas/tlc/1.0.9/commands/M0006.json +69 -0
  649. data/schemas/tlc/1.0.9/commands/M0007.json +51 -0
  650. data/schemas/tlc/1.0.9/commands/M0008.json +69 -0
  651. data/schemas/tlc/1.0.9/commands/M0010.json +51 -0
  652. data/schemas/tlc/1.0.9/commands/M0011.json +51 -0
  653. data/schemas/tlc/1.0.9/commands/M0012.json +51 -0
  654. data/schemas/tlc/1.0.9/commands/M0013.json +51 -0
  655. data/schemas/tlc/1.0.9/commands/M0019.json +87 -0
  656. data/schemas/tlc/1.0.9/commands/M0103.json +72 -0
  657. data/schemas/tlc/1.0.9/commands/M0104.json +141 -0
  658. data/schemas/tlc/1.0.9/commands/command_requests.json +8 -0
  659. data/schemas/tlc/1.0.9/commands/command_responses.json +8 -0
  660. data/schemas/tlc/1.0.9/commands/commands.json +255 -0
  661. data/schemas/tlc/1.0.9/defs/definitions.json +67 -0
  662. data/schemas/tlc/1.0.9/defs/guards.json +24 -0
  663. data/schemas/tlc/1.0.9/rsmp.json +74 -0
  664. data/schemas/tlc/1.0.9/statuses/S0001.json +91 -0
  665. data/schemas/tlc/1.0.9/statuses/S0002.json +36 -0
  666. data/schemas/tlc/1.0.9/statuses/S0003.json +54 -0
  667. data/schemas/tlc/1.0.9/statuses/S0004.json +54 -0
  668. data/schemas/tlc/1.0.9/statuses/S0005.json +36 -0
  669. data/schemas/tlc/1.0.9/statuses/S0006.json +54 -0
  670. data/schemas/tlc/1.0.9/statuses/S0007.json +54 -0
  671. data/schemas/tlc/1.0.9/statuses/S0008.json +54 -0
  672. data/schemas/tlc/1.0.9/statuses/S0009.json +54 -0
  673. data/schemas/tlc/1.0.9/statuses/S0010.json +54 -0
  674. data/schemas/tlc/1.0.9/statuses/S0011.json +54 -0
  675. data/schemas/tlc/1.0.9/statuses/S0012.json +54 -0
  676. data/schemas/tlc/1.0.9/statuses/S0013.json +54 -0
  677. data/schemas/tlc/1.0.9/statuses/S0014.json +36 -0
  678. data/schemas/tlc/1.0.9/statuses/S0015.json +36 -0
  679. data/schemas/tlc/1.0.9/statuses/S0016.json +36 -0
  680. data/schemas/tlc/1.0.9/statuses/S0017.json +36 -0
  681. data/schemas/tlc/1.0.9/statuses/S0018.json +36 -0
  682. data/schemas/tlc/1.0.9/statuses/S0019.json +36 -0
  683. data/schemas/tlc/1.0.9/statuses/S0020.json +54 -0
  684. data/schemas/tlc/1.0.9/statuses/S0021.json +37 -0
  685. data/schemas/tlc/1.0.9/statuses/S0025.json +181 -0
  686. data/schemas/tlc/1.0.9/statuses/S0091.json +57 -0
  687. data/schemas/tlc/1.0.9/statuses/S0092.json +57 -0
  688. data/schemas/tlc/1.0.9/statuses/S0095.json +36 -0
  689. data/schemas/tlc/1.0.9/statuses/S0096.json +126 -0
  690. data/schemas/tlc/1.0.9/statuses/S0201.json +54 -0
  691. data/schemas/tlc/1.0.9/statuses/S0202.json +54 -0
  692. data/schemas/tlc/1.0.9/statuses/S0203.json +54 -0
  693. data/schemas/tlc/1.0.9/statuses/S0204.json +198 -0
  694. data/schemas/tlc/1.0.9/statuses/statuses.json +483 -0
  695. data/schemas/tlc/1.0.9/sxl.yaml +1010 -0
  696. data/schemas/tlc/1.1.0/alarms/A0001.json +4 -0
  697. data/schemas/tlc/1.1.0/alarms/A0002.json +4 -0
  698. data/schemas/tlc/1.1.0/alarms/A0003.json +4 -0
  699. data/schemas/tlc/1.1.0/alarms/A0004.json +4 -0
  700. data/schemas/tlc/1.1.0/alarms/A0005.json +4 -0
  701. data/schemas/tlc/1.1.0/alarms/A0006.json +4 -0
  702. data/schemas/tlc/1.1.0/alarms/A0007.json +34 -0
  703. data/schemas/tlc/1.1.0/alarms/A0008.json +30 -0
  704. data/schemas/tlc/1.1.0/alarms/A0009.json +4 -0
  705. data/schemas/tlc/1.1.0/alarms/A0010.json +4 -0
  706. data/schemas/tlc/1.1.0/alarms/A0101.json +4 -0
  707. data/schemas/tlc/1.1.0/alarms/A0201.json +35 -0
  708. data/schemas/tlc/1.1.0/alarms/A0202.json +35 -0
  709. data/schemas/tlc/1.1.0/alarms/A0301.json +92 -0
  710. data/schemas/tlc/1.1.0/alarms/A0302.json +115 -0
  711. data/schemas/tlc/1.1.0/alarms/A0303.json +92 -0
  712. data/schemas/tlc/1.1.0/alarms/A0304.json +115 -0
  713. data/schemas/tlc/1.1.0/alarms/alarms.json +287 -0
  714. data/schemas/tlc/1.1.0/commands/M0001.json +92 -0
  715. data/schemas/tlc/1.1.0/commands/M0002.json +69 -0
  716. data/schemas/tlc/1.1.0/commands/M0003.json +69 -0
  717. data/schemas/tlc/1.1.0/commands/M0004.json +51 -0
  718. data/schemas/tlc/1.1.0/commands/M0005.json +69 -0
  719. data/schemas/tlc/1.1.0/commands/M0006.json +69 -0
  720. data/schemas/tlc/1.1.0/commands/M0007.json +51 -0
  721. data/schemas/tlc/1.1.0/commands/M0008.json +69 -0
  722. data/schemas/tlc/1.1.0/commands/M0010.json +51 -0
  723. data/schemas/tlc/1.1.0/commands/M0011.json +51 -0
  724. data/schemas/tlc/1.1.0/commands/M0012.json +51 -0
  725. data/schemas/tlc/1.1.0/commands/M0013.json +51 -0
  726. data/schemas/tlc/1.1.0/commands/M0014.json +69 -0
  727. data/schemas/tlc/1.1.0/commands/M0015.json +69 -0
  728. data/schemas/tlc/1.1.0/commands/M0016.json +51 -0
  729. data/schemas/tlc/1.1.0/commands/M0017.json +51 -0
  730. data/schemas/tlc/1.1.0/commands/M0018.json +69 -0
  731. data/schemas/tlc/1.1.0/commands/M0019.json +87 -0
  732. data/schemas/tlc/1.1.0/commands/M0020.json +87 -0
  733. data/schemas/tlc/1.1.0/commands/M0021.json +51 -0
  734. data/schemas/tlc/1.1.0/commands/M0022.json +249 -0
  735. data/schemas/tlc/1.1.0/commands/M0023.json +51 -0
  736. data/schemas/tlc/1.1.0/commands/M0103.json +72 -0
  737. data/schemas/tlc/1.1.0/commands/M0104.json +141 -0
  738. data/schemas/tlc/1.1.0/commands/command_requests.json +8 -0
  739. data/schemas/tlc/1.1.0/commands/command_responses.json +8 -0
  740. data/schemas/tlc/1.1.0/commands/commands.json +399 -0
  741. data/schemas/tlc/1.1.0/defs/definitions.json +67 -0
  742. data/schemas/tlc/1.1.0/defs/guards.json +24 -0
  743. data/schemas/tlc/1.1.0/rsmp.json +74 -0
  744. data/schemas/tlc/1.1.0/statuses/S0001.json +91 -0
  745. data/schemas/tlc/1.1.0/statuses/S0002.json +36 -0
  746. data/schemas/tlc/1.1.0/statuses/S0003.json +54 -0
  747. data/schemas/tlc/1.1.0/statuses/S0004.json +54 -0
  748. data/schemas/tlc/1.1.0/statuses/S0005.json +36 -0
  749. data/schemas/tlc/1.1.0/statuses/S0006.json +54 -0
  750. data/schemas/tlc/1.1.0/statuses/S0007.json +73 -0
  751. data/schemas/tlc/1.1.0/statuses/S0008.json +73 -0
  752. data/schemas/tlc/1.1.0/statuses/S0009.json +73 -0
  753. data/schemas/tlc/1.1.0/statuses/S0010.json +73 -0
  754. data/schemas/tlc/1.1.0/statuses/S0011.json +73 -0
  755. data/schemas/tlc/1.1.0/statuses/S0012.json +73 -0
  756. data/schemas/tlc/1.1.0/statuses/S0013.json +54 -0
  757. data/schemas/tlc/1.1.0/statuses/S0014.json +62 -0
  758. data/schemas/tlc/1.1.0/statuses/S0015.json +62 -0
  759. data/schemas/tlc/1.1.0/statuses/S0016.json +36 -0
  760. data/schemas/tlc/1.1.0/statuses/S0017.json +36 -0
  761. data/schemas/tlc/1.1.0/statuses/S0018.json +36 -0
  762. data/schemas/tlc/1.1.0/statuses/S0019.json +36 -0
  763. data/schemas/tlc/1.1.0/statuses/S0020.json +54 -0
  764. data/schemas/tlc/1.1.0/statuses/S0021.json +37 -0
  765. data/schemas/tlc/1.1.0/statuses/S0022.json +36 -0
  766. data/schemas/tlc/1.1.0/statuses/S0023.json +37 -0
  767. data/schemas/tlc/1.1.0/statuses/S0024.json +37 -0
  768. data/schemas/tlc/1.1.0/statuses/S0025.json +162 -0
  769. data/schemas/tlc/1.1.0/statuses/S0026.json +36 -0
  770. data/schemas/tlc/1.1.0/statuses/S0027.json +36 -0
  771. data/schemas/tlc/1.1.0/statuses/S0028.json +36 -0
  772. data/schemas/tlc/1.1.0/statuses/S0029.json +36 -0
  773. data/schemas/tlc/1.1.0/statuses/S0030.json +36 -0
  774. data/schemas/tlc/1.1.0/statuses/S0031.json +36 -0
  775. data/schemas/tlc/1.1.0/statuses/S0032.json +73 -0
  776. data/schemas/tlc/1.1.0/statuses/S0033.json +77 -0
  777. data/schemas/tlc/1.1.0/statuses/S0034.json +36 -0
  778. data/schemas/tlc/1.1.0/statuses/S0091.json +40 -0
  779. data/schemas/tlc/1.1.0/statuses/S0092.json +40 -0
  780. data/schemas/tlc/1.1.0/statuses/S0095.json +36 -0
  781. data/schemas/tlc/1.1.0/statuses/S0096.json +126 -0
  782. data/schemas/tlc/1.1.0/statuses/S0097.json +54 -0
  783. data/schemas/tlc/1.1.0/statuses/S0098.json +72 -0
  784. data/schemas/tlc/1.1.0/statuses/S0201.json +54 -0
  785. data/schemas/tlc/1.1.0/statuses/S0202.json +54 -0
  786. data/schemas/tlc/1.1.0/statuses/S0203.json +54 -0
  787. data/schemas/tlc/1.1.0/statuses/S0204.json +198 -0
  788. data/schemas/tlc/1.1.0/statuses/S0205.json +54 -0
  789. data/schemas/tlc/1.1.0/statuses/S0206.json +54 -0
  790. data/schemas/tlc/1.1.0/statuses/S0207.json +54 -0
  791. data/schemas/tlc/1.1.0/statuses/S0208.json +198 -0
  792. data/schemas/tlc/1.1.0/statuses/statuses.json +787 -0
  793. data/schemas/tlc/1.1.0/sxl.yaml +2106 -0
  794. data/schemas/tlc/1.2.0/alarms/A0001.json +4 -0
  795. data/schemas/tlc/1.2.0/alarms/A0002.json +4 -0
  796. data/schemas/tlc/1.2.0/alarms/A0003.json +4 -0
  797. data/schemas/tlc/1.2.0/alarms/A0004.json +4 -0
  798. data/schemas/tlc/1.2.0/alarms/A0005.json +4 -0
  799. data/schemas/tlc/1.2.0/alarms/A0006.json +4 -0
  800. data/schemas/tlc/1.2.0/alarms/A0007.json +34 -0
  801. data/schemas/tlc/1.2.0/alarms/A0008.json +30 -0
  802. data/schemas/tlc/1.2.0/alarms/A0009.json +4 -0
  803. data/schemas/tlc/1.2.0/alarms/A0010.json +4 -0
  804. data/schemas/tlc/1.2.0/alarms/A0101.json +4 -0
  805. data/schemas/tlc/1.2.0/alarms/A0201.json +35 -0
  806. data/schemas/tlc/1.2.0/alarms/A0202.json +35 -0
  807. data/schemas/tlc/1.2.0/alarms/A0301.json +92 -0
  808. data/schemas/tlc/1.2.0/alarms/A0302.json +115 -0
  809. data/schemas/tlc/1.2.0/alarms/A0303.json +92 -0
  810. data/schemas/tlc/1.2.0/alarms/A0304.json +115 -0
  811. data/schemas/tlc/1.2.0/alarms/alarms.json +287 -0
  812. data/schemas/tlc/1.2.0/commands/M0001.json +92 -0
  813. data/schemas/tlc/1.2.0/commands/M0002.json +69 -0
  814. data/schemas/tlc/1.2.0/commands/M0003.json +69 -0
  815. data/schemas/tlc/1.2.0/commands/M0004.json +51 -0
  816. data/schemas/tlc/1.2.0/commands/M0005.json +69 -0
  817. data/schemas/tlc/1.2.0/commands/M0006.json +69 -0
  818. data/schemas/tlc/1.2.0/commands/M0007.json +51 -0
  819. data/schemas/tlc/1.2.0/commands/M0008.json +69 -0
  820. data/schemas/tlc/1.2.0/commands/M0010.json +51 -0
  821. data/schemas/tlc/1.2.0/commands/M0011.json +51 -0
  822. data/schemas/tlc/1.2.0/commands/M0012.json +51 -0
  823. data/schemas/tlc/1.2.0/commands/M0013.json +51 -0
  824. data/schemas/tlc/1.2.0/commands/M0014.json +69 -0
  825. data/schemas/tlc/1.2.0/commands/M0015.json +69 -0
  826. data/schemas/tlc/1.2.0/commands/M0016.json +51 -0
  827. data/schemas/tlc/1.2.0/commands/M0017.json +51 -0
  828. data/schemas/tlc/1.2.0/commands/M0018.json +69 -0
  829. data/schemas/tlc/1.2.0/commands/M0019.json +87 -0
  830. data/schemas/tlc/1.2.0/commands/M0020.json +87 -0
  831. data/schemas/tlc/1.2.0/commands/M0021.json +51 -0
  832. data/schemas/tlc/1.2.0/commands/M0022.json +249 -0
  833. data/schemas/tlc/1.2.0/commands/M0023.json +51 -0
  834. data/schemas/tlc/1.2.0/commands/M0103.json +72 -0
  835. data/schemas/tlc/1.2.0/commands/M0104.json +141 -0
  836. data/schemas/tlc/1.2.0/commands/command_requests.json +8 -0
  837. data/schemas/tlc/1.2.0/commands/command_responses.json +8 -0
  838. data/schemas/tlc/1.2.0/commands/commands.json +399 -0
  839. data/schemas/tlc/1.2.0/defs/definitions.json +67 -0
  840. data/schemas/tlc/1.2.0/defs/guards.json +24 -0
  841. data/schemas/tlc/1.2.0/rsmp.json +74 -0
  842. data/schemas/tlc/1.2.0/statuses/S0001.json +91 -0
  843. data/schemas/tlc/1.2.0/statuses/S0002.json +36 -0
  844. data/schemas/tlc/1.2.0/statuses/S0003.json +36 -0
  845. data/schemas/tlc/1.2.0/statuses/S0004.json +36 -0
  846. data/schemas/tlc/1.2.0/statuses/S0005.json +72 -0
  847. data/schemas/tlc/1.2.0/statuses/S0006.json +54 -0
  848. data/schemas/tlc/1.2.0/statuses/S0007.json +73 -0
  849. data/schemas/tlc/1.2.0/statuses/S0008.json +73 -0
  850. data/schemas/tlc/1.2.0/statuses/S0009.json +73 -0
  851. data/schemas/tlc/1.2.0/statuses/S0010.json +73 -0
  852. data/schemas/tlc/1.2.0/statuses/S0011.json +73 -0
  853. data/schemas/tlc/1.2.0/statuses/S0012.json +73 -0
  854. data/schemas/tlc/1.2.0/statuses/S0013.json +54 -0
  855. data/schemas/tlc/1.2.0/statuses/S0014.json +62 -0
  856. data/schemas/tlc/1.2.0/statuses/S0015.json +62 -0
  857. data/schemas/tlc/1.2.0/statuses/S0016.json +36 -0
  858. data/schemas/tlc/1.2.0/statuses/S0017.json +36 -0
  859. data/schemas/tlc/1.2.0/statuses/S0018.json +61 -0
  860. data/schemas/tlc/1.2.0/statuses/S0019.json +36 -0
  861. data/schemas/tlc/1.2.0/statuses/S0020.json +54 -0
  862. data/schemas/tlc/1.2.0/statuses/S0021.json +37 -0
  863. data/schemas/tlc/1.2.0/statuses/S0022.json +36 -0
  864. data/schemas/tlc/1.2.0/statuses/S0023.json +37 -0
  865. data/schemas/tlc/1.2.0/statuses/S0024.json +37 -0
  866. data/schemas/tlc/1.2.0/statuses/S0025.json +162 -0
  867. data/schemas/tlc/1.2.0/statuses/S0026.json +36 -0
  868. data/schemas/tlc/1.2.0/statuses/S0027.json +36 -0
  869. data/schemas/tlc/1.2.0/statuses/S0028.json +36 -0
  870. data/schemas/tlc/1.2.0/statuses/S0029.json +36 -0
  871. data/schemas/tlc/1.2.0/statuses/S0030.json +36 -0
  872. data/schemas/tlc/1.2.0/statuses/S0031.json +36 -0
  873. data/schemas/tlc/1.2.0/statuses/S0032.json +73 -0
  874. data/schemas/tlc/1.2.0/statuses/S0033.json +77 -0
  875. data/schemas/tlc/1.2.0/statuses/S0034.json +36 -0
  876. data/schemas/tlc/1.2.0/statuses/S0035.json +49 -0
  877. data/schemas/tlc/1.2.0/statuses/S0091.json +40 -0
  878. data/schemas/tlc/1.2.0/statuses/S0092.json +40 -0
  879. data/schemas/tlc/1.2.0/statuses/S0095.json +36 -0
  880. data/schemas/tlc/1.2.0/statuses/S0096.json +126 -0
  881. data/schemas/tlc/1.2.0/statuses/S0097.json +54 -0
  882. data/schemas/tlc/1.2.0/statuses/S0098.json +72 -0
  883. data/schemas/tlc/1.2.0/statuses/S0201.json +54 -0
  884. data/schemas/tlc/1.2.0/statuses/S0202.json +54 -0
  885. data/schemas/tlc/1.2.0/statuses/S0203.json +54 -0
  886. data/schemas/tlc/1.2.0/statuses/S0204.json +198 -0
  887. data/schemas/tlc/1.2.0/statuses/S0205.json +54 -0
  888. data/schemas/tlc/1.2.0/statuses/S0206.json +54 -0
  889. data/schemas/tlc/1.2.0/statuses/S0207.json +54 -0
  890. data/schemas/tlc/1.2.0/statuses/S0208.json +198 -0
  891. data/schemas/tlc/1.2.0/statuses/statuses.json +787 -0
  892. data/schemas/tlc/1.2.0/sxl.yaml +2082 -0
  893. data/schemas/tlc/1.2.1/alarms/A0001.json +4 -0
  894. data/schemas/tlc/1.2.1/alarms/A0002.json +4 -0
  895. data/schemas/tlc/1.2.1/alarms/A0003.json +4 -0
  896. data/schemas/tlc/1.2.1/alarms/A0004.json +4 -0
  897. data/schemas/tlc/1.2.1/alarms/A0005.json +4 -0
  898. data/schemas/tlc/1.2.1/alarms/A0006.json +4 -0
  899. data/schemas/tlc/1.2.1/alarms/A0007.json +34 -0
  900. data/schemas/tlc/1.2.1/alarms/A0008.json +30 -0
  901. data/schemas/tlc/1.2.1/alarms/A0009.json +4 -0
  902. data/schemas/tlc/1.2.1/alarms/A0010.json +4 -0
  903. data/schemas/tlc/1.2.1/alarms/A0101.json +4 -0
  904. data/schemas/tlc/1.2.1/alarms/A0201.json +35 -0
  905. data/schemas/tlc/1.2.1/alarms/A0202.json +35 -0
  906. data/schemas/tlc/1.2.1/alarms/A0301.json +92 -0
  907. data/schemas/tlc/1.2.1/alarms/A0302.json +115 -0
  908. data/schemas/tlc/1.2.1/alarms/A0303.json +92 -0
  909. data/schemas/tlc/1.2.1/alarms/A0304.json +115 -0
  910. data/schemas/tlc/1.2.1/alarms/alarms.json +287 -0
  911. data/schemas/tlc/1.2.1/commands/M0001.json +92 -0
  912. data/schemas/tlc/1.2.1/commands/M0002.json +69 -0
  913. data/schemas/tlc/1.2.1/commands/M0003.json +69 -0
  914. data/schemas/tlc/1.2.1/commands/M0004.json +51 -0
  915. data/schemas/tlc/1.2.1/commands/M0005.json +69 -0
  916. data/schemas/tlc/1.2.1/commands/M0006.json +69 -0
  917. data/schemas/tlc/1.2.1/commands/M0007.json +51 -0
  918. data/schemas/tlc/1.2.1/commands/M0008.json +69 -0
  919. data/schemas/tlc/1.2.1/commands/M0010.json +51 -0
  920. data/schemas/tlc/1.2.1/commands/M0011.json +51 -0
  921. data/schemas/tlc/1.2.1/commands/M0012.json +51 -0
  922. data/schemas/tlc/1.2.1/commands/M0013.json +51 -0
  923. data/schemas/tlc/1.2.1/commands/M0014.json +69 -0
  924. data/schemas/tlc/1.2.1/commands/M0015.json +69 -0
  925. data/schemas/tlc/1.2.1/commands/M0016.json +51 -0
  926. data/schemas/tlc/1.2.1/commands/M0017.json +51 -0
  927. data/schemas/tlc/1.2.1/commands/M0018.json +69 -0
  928. data/schemas/tlc/1.2.1/commands/M0019.json +87 -0
  929. data/schemas/tlc/1.2.1/commands/M0020.json +87 -0
  930. data/schemas/tlc/1.2.1/commands/M0021.json +51 -0
  931. data/schemas/tlc/1.2.1/commands/M0022.json +249 -0
  932. data/schemas/tlc/1.2.1/commands/M0023.json +51 -0
  933. data/schemas/tlc/1.2.1/commands/M0103.json +72 -0
  934. data/schemas/tlc/1.2.1/commands/M0104.json +141 -0
  935. data/schemas/tlc/1.2.1/commands/command_requests.json +8 -0
  936. data/schemas/tlc/1.2.1/commands/command_responses.json +8 -0
  937. data/schemas/tlc/1.2.1/commands/commands.json +399 -0
  938. data/schemas/tlc/1.2.1/defs/definitions.json +67 -0
  939. data/schemas/tlc/1.2.1/defs/guards.json +24 -0
  940. data/schemas/tlc/1.2.1/rsmp.json +74 -0
  941. data/schemas/tlc/1.2.1/statuses/S0001.json +91 -0
  942. data/schemas/tlc/1.2.1/statuses/S0002.json +36 -0
  943. data/schemas/tlc/1.2.1/statuses/S0003.json +36 -0
  944. data/schemas/tlc/1.2.1/statuses/S0004.json +36 -0
  945. data/schemas/tlc/1.2.1/statuses/S0005.json +72 -0
  946. data/schemas/tlc/1.2.1/statuses/S0006.json +54 -0
  947. data/schemas/tlc/1.2.1/statuses/S0007.json +73 -0
  948. data/schemas/tlc/1.2.1/statuses/S0008.json +73 -0
  949. data/schemas/tlc/1.2.1/statuses/S0009.json +73 -0
  950. data/schemas/tlc/1.2.1/statuses/S0010.json +73 -0
  951. data/schemas/tlc/1.2.1/statuses/S0011.json +73 -0
  952. data/schemas/tlc/1.2.1/statuses/S0012.json +73 -0
  953. data/schemas/tlc/1.2.1/statuses/S0013.json +54 -0
  954. data/schemas/tlc/1.2.1/statuses/S0014.json +62 -0
  955. data/schemas/tlc/1.2.1/statuses/S0015.json +62 -0
  956. data/schemas/tlc/1.2.1/statuses/S0016.json +36 -0
  957. data/schemas/tlc/1.2.1/statuses/S0017.json +36 -0
  958. data/schemas/tlc/1.2.1/statuses/S0018.json +61 -0
  959. data/schemas/tlc/1.2.1/statuses/S0019.json +36 -0
  960. data/schemas/tlc/1.2.1/statuses/S0020.json +54 -0
  961. data/schemas/tlc/1.2.1/statuses/S0021.json +37 -0
  962. data/schemas/tlc/1.2.1/statuses/S0022.json +36 -0
  963. data/schemas/tlc/1.2.1/statuses/S0023.json +37 -0
  964. data/schemas/tlc/1.2.1/statuses/S0024.json +37 -0
  965. data/schemas/tlc/1.2.1/statuses/S0025.json +162 -0
  966. data/schemas/tlc/1.2.1/statuses/S0026.json +36 -0
  967. data/schemas/tlc/1.2.1/statuses/S0027.json +36 -0
  968. data/schemas/tlc/1.2.1/statuses/S0028.json +36 -0
  969. data/schemas/tlc/1.2.1/statuses/S0029.json +36 -0
  970. data/schemas/tlc/1.2.1/statuses/S0030.json +36 -0
  971. data/schemas/tlc/1.2.1/statuses/S0031.json +36 -0
  972. data/schemas/tlc/1.2.1/statuses/S0032.json +73 -0
  973. data/schemas/tlc/1.2.1/statuses/S0033.json +77 -0
  974. data/schemas/tlc/1.2.1/statuses/S0034.json +36 -0
  975. data/schemas/tlc/1.2.1/statuses/S0035.json +49 -0
  976. data/schemas/tlc/1.2.1/statuses/S0091.json +40 -0
  977. data/schemas/tlc/1.2.1/statuses/S0092.json +40 -0
  978. data/schemas/tlc/1.2.1/statuses/S0095.json +36 -0
  979. data/schemas/tlc/1.2.1/statuses/S0096.json +126 -0
  980. data/schemas/tlc/1.2.1/statuses/S0097.json +54 -0
  981. data/schemas/tlc/1.2.1/statuses/S0098.json +72 -0
  982. data/schemas/tlc/1.2.1/statuses/S0201.json +54 -0
  983. data/schemas/tlc/1.2.1/statuses/S0202.json +54 -0
  984. data/schemas/tlc/1.2.1/statuses/S0203.json +54 -0
  985. data/schemas/tlc/1.2.1/statuses/S0204.json +198 -0
  986. data/schemas/tlc/1.2.1/statuses/S0205.json +54 -0
  987. data/schemas/tlc/1.2.1/statuses/S0206.json +54 -0
  988. data/schemas/tlc/1.2.1/statuses/S0207.json +54 -0
  989. data/schemas/tlc/1.2.1/statuses/S0208.json +198 -0
  990. data/schemas/tlc/1.2.1/statuses/statuses.json +787 -0
  991. data/schemas/tlc/1.2.1/sxl.yaml +2109 -0
  992. data/schemas/tlc/defs/guards.json +24 -0
  993. metadata +1000 -4
@@ -0,0 +1,1010 @@
1
+ ---
2
+ meta:
3
+ name: tlc
4
+ description: Traffic Light Controllers
5
+ version: 1.0.9
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
+ S0091:
380
+ description: |-
381
+ Operator logged in/out OP-panel.
382
+ Provides information if maintenance personnel is currently working on site.
383
+ arguments:
384
+ user:
385
+ description: |-
386
+ nobody: No one logged in
387
+ <username>: User currently logged in
388
+ type: string
389
+ status:
390
+ type: string
391
+ values:
392
+ login: Somebody currently logged in
393
+ logout: Nobody currently logged in
394
+ S0092:
395
+ description: |-
396
+ Operator logged in/out web-interface.
397
+ Provides information if maintenance personnel is currently working with the controller.
398
+ arguments:
399
+ user:
400
+ description: |-
401
+ nobody: No one logged in
402
+ <username>: User currently logged in
403
+ type: string
404
+ status:
405
+ type: string
406
+ values:
407
+ login: Somebody currently logged in
408
+ logout: Nobody currently logged in
409
+ S0095:
410
+ description: |-
411
+ Version of Traffic Light Controller.
412
+ Provides diagnostic version information.
413
+ arguments:
414
+ status:
415
+ type: string
416
+ description: Manufacturer, product name and version of traffic light controller
417
+ S0096:
418
+ description: |-
419
+ Current date and time
420
+ Provides diagnostic information about the current date and time set in the controller.
421
+ arguments:
422
+ year:
423
+ type: integer
424
+ description: 'Year according to format YYYY. NOTE: UTC is used'
425
+ range: YYYY
426
+ month:
427
+ type: integer
428
+ description: 'Month (01-12) according to format MM. Note: UTC is used'
429
+ range: MM
430
+ day:
431
+ type: integer
432
+ description: 'Day of month (01-31) according to format DD. Note: UTC
433
+ is used'
434
+ range: DD
435
+ hour:
436
+ type: integer
437
+ description: 'Hour of day (00-23) according to format DD. Note: UTC is
438
+ used'
439
+ range: HH
440
+ minute:
441
+ type: integer
442
+ description: 'Minute (00-59) according to format MM. Note: UTC is used'
443
+ range: MM
444
+ second:
445
+ type: integer
446
+ description: 'Second (00-59) according to format SS. Note: UTC is used'
447
+ range: SS
448
+ commands:
449
+ M0001:
450
+ description: |-
451
+ Sets functional position.
452
+ Sets the controller to yellow flash, dark mode or normal control.
453
+ Requires security code 2.
454
+ arguments:
455
+ status:
456
+ type: string
457
+ description: Set operating mode
458
+ values:
459
+ NormalControl: Normal Control
460
+ YellowFlash: Enables yellow flash
461
+ Dark: Enables dark mode
462
+ securityCode:
463
+ type: string_list
464
+ description: Security code 2
465
+ timeout:
466
+ type: integer_list
467
+ description: |-
468
+ Time in minutes until controller automatically reverts to previous functional position.
469
+ 0=no automatic return
470
+ min: 0
471
+ max: 1440
472
+ intersection:
473
+ type: integer_list
474
+ description: Intersection number
475
+ min: 0
476
+ max: 255
477
+ command: setValue
478
+ M0002:
479
+ description: |-
480
+ Sets current time plan.
481
+ Change of traffic program of the traffic light controller.
482
+ Typical usages is scenario based control where change of program is used to change signal timings etc.
483
+ This command changes the signal timings for optimal traffic flow.
484
+ Requires security code 2
485
+ arguments:
486
+ status:
487
+ type: boolean
488
+ description: |-
489
+ False: Controller uses time plan according to programming
490
+ True: Controller uses time plan according to command
491
+ securityCode:
492
+ type: string
493
+ description: Security code 2
494
+ timeplan:
495
+ type: integer
496
+ description: designation of time plan
497
+ range: "[1-255]"
498
+ command: setPlan
499
+ M0003:
500
+ description: |-
501
+ Sets traffic situation the controller uses.
502
+ 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).
503
+ 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.
504
+ Requires security code 2
505
+ arguments:
506
+ status:
507
+ type: boolean
508
+ description: |-
509
+ False: Controller uses traffic situation according to own programming
510
+ True: Controller uses traffic situation according to command
511
+ securityCode:
512
+ type: string
513
+ description: Security code 2
514
+ traficsituation:
515
+ type: integer
516
+ description: designation of traficsituation
517
+ range: "[1-255]"
518
+ command: setTrafficSituation
519
+ M0004:
520
+ description: |-
521
+ Restarts Traffic Light Controller.
522
+ Used in the event of serious faults in the device where a restart is considered to be able to remedy a problem.
523
+ Requires security code 2
524
+ arguments:
525
+ status:
526
+ type: boolean
527
+ description: 'True: Restart controller'
528
+ securityCode:
529
+ type: string
530
+ description: Security code 2
531
+ command: setRestart
532
+ M0005:
533
+ description: |-
534
+ Activate emergency route.
535
+ 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.
536
+ Should be used in situations where full priority is given in the emergency vehicle program.
537
+ Requires security code 2.
538
+ arguments:
539
+ status:
540
+ type: boolean
541
+ description: |-
542
+ False: Activate emergency route
543
+ True: Deactivate emergency route
544
+ securityCode:
545
+ type: string
546
+ description: Security code 2
547
+ emergencyroute:
548
+ type: integer
549
+ description: Number of emergency route
550
+ range: "[1-255]"
551
+ command: setEmergency
552
+ M0006:
553
+ description: |-
554
+ Activate input.
555
+ Set given input (1-255) of the controllers general purpose I/O to either true or false.
556
+ The function can provide an input to the traffic light controller on which a predefined action can be taken.
557
+ Can be used for all types of input where the traffic light controller must react to external control.
558
+ Typical usages are bus priority, coordination between traffic controllers, external control systems, and much more.
559
+ Requires security code 2.
560
+ arguments:
561
+ status:
562
+ type: boolean
563
+ description: |-
564
+ False: Deactivate input
565
+ True: Activate input
566
+ securityCode:
567
+ type: string
568
+ description: Security code 2
569
+ input:
570
+ type: integer
571
+ description: Number of Input
572
+ range: "[1-255]"
573
+ command: setInput
574
+ M0007:
575
+ description: |-
576
+ Activate fixed time control.
577
+ Deactivates the traffic actuated control using detectors and activates pre-timed control.
578
+ Can be used in case normal detectors can't be used, e.g. during maintenance work.
579
+ Requires security code 2.
580
+ arguments:
581
+ status:
582
+ type: boolean
583
+ description: |-
584
+ False: Deactivate fixed time control
585
+ True: Activate fixed time control
586
+ securityCode:
587
+ type: string
588
+ description: Security code 2
589
+ command: setFixedTime
590
+ M0012:
591
+ description: |-
592
+ Request start or stop of a series of signal groups.
593
+ Starts or stops several signal groups.
594
+ 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.
595
+ 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.
596
+ Intended for use with coordination of signaling systems where a traffic light controller communicates with neighboring controllers.
597
+ Only used when a primary controller orders signal group of other controller to green or red (Coordination with external control bits).
598
+ May also include purposes for adaptive control where a UTC system or a local traffic light controller takes over the phase control (stage control).
599
+ Requires security code 2.
600
+ arguments:
601
+ status:
602
+ type: string
603
+ description: |-
604
+ 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.
605
+
606
+ 1=Order signal group to green
607
+ 0=Order signal group to red
608
+
609
+ Format: [Offset],[Bits to set],[Bits to unset]:...
610
+
611
+ 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.
612
+
613
+ Example 1:
614
+ "5, 4134, 65" sets input 6,7,10,17 = on and 5,11 = off
615
+ (Input starts from no. 5 and bit 1,2,5,12 = 1 and bit 0,6 = 0)
616
+
617
+ Example 2:
618
+ "22, 1, 4" sets input 22 = on and 24 = off
619
+ (Input starts from no. 22 and bit 0 = 1 and bit 2 = 0)
620
+
621
+ And both these examples could be sent in the same message as:
622
+ "5,4143,65:22,1,4"
623
+
624
+ Such a message would order signal group 6,7,10,17,22 to green and signal group 5,11,24 to red
625
+ securityCode:
626
+ type: string
627
+ description: Security code 2
628
+ command: setStart
629
+ M0013:
630
+ description: |-
631
+ Activate a series of inputs.
632
+ Set given inputs (1-255) of the controllers general purpose I/O to either true or false.
633
+ 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.
634
+ 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.
635
+ Requires security code 2
636
+ arguments:
637
+ status:
638
+ type: string
639
+ description: |-
640
+ 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.
641
+
642
+ Format: [Offset],[Bits to set],[Bits to unset]:...
643
+
644
+ 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.
645
+
646
+ Example 1:
647
+ "5, 4134, 65" sets input 6,7,10,17 = on and 5,11 = off
648
+ (Input starts from no. 5 and bit 1,2,5,12 = 1 and bit 0,6 = 0)
649
+
650
+ Example 2:
651
+ "22, 1, 4" sets input 22 = on and 24 = off
652
+ (Input starts from no. 22 and bit 0 = 1 and bit 2 = 0)
653
+
654
+ And both thease examples could be sent in the same message as:
655
+ "5,4143:65:22,1,4"
656
+
657
+ Such a message would activate input 6,7,10,17,22 and deactivate input 5,11,24
658
+ securityCode:
659
+ type: string
660
+ description: Security code 2
661
+ command: setInput
662
+ M0019:
663
+ description: |-
664
+ Force input.
665
+ 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.
666
+ Can be used for bus priority, coordination between traffic controllers, external control systems, and much more.
667
+ Requires security code 2.
668
+ arguments:
669
+ status:
670
+ type: boolean
671
+ description: |-
672
+ False: Force input
673
+ True: Release input
674
+ securityCode:
675
+ type: string
676
+ description: Security code 2
677
+ input:
678
+ type: integer
679
+ description: Number of Input
680
+ range: "[1-255]"
681
+ inputValue:
682
+ type: boolean
683
+ description: |-
684
+ False: input forced to False
685
+ True: input forced to True
686
+ command: setInput
687
+ M0103:
688
+ description: |-
689
+ Set security code.
690
+ Change the security code to use when sending commands
691
+ 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.
692
+ arguments:
693
+ status:
694
+ type: string
695
+ values:
696
+ Level1: Change security code 1
697
+ Level2: Change security code 2
698
+ oldSecurityCode:
699
+ type: string
700
+ description: Previous security code
701
+ newSecurityCode:
702
+ type: string
703
+ description: New security code
704
+ command: setSecurityCode
705
+ M0104:
706
+ description: |-
707
+ Set clock.
708
+ 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.
709
+ Requires security code 1
710
+ arguments:
711
+ securityCode:
712
+ type: string
713
+ description: Security code 1
714
+ year:
715
+ type: integer
716
+ description: |-
717
+ Changes internal clock. Note: UTC is used
718
+ Year according to YYYY
719
+ range: "[YYYY]"
720
+ month:
721
+ type: integer
722
+ description: |-
723
+ Changes internal clock. Note: UTC is used
724
+ Month according to MM (01-12)
725
+ range: "[MM]"
726
+ day:
727
+ type: integer
728
+ description: |-
729
+ Changes internal clock. Note: UTC is used
730
+ Day in month according to DD (01-31)
731
+ range: "[DD]"
732
+ hour:
733
+ type: integer
734
+ description: |-
735
+ Changes internal clock. Note: UTC is used
736
+ Hour according to HH (00-23)
737
+ range: "[HH]"
738
+ minute:
739
+ type: integer
740
+ description: |-
741
+ Changes internal clock. Note: UTC is used
742
+ Minute according to MM (00-59)
743
+ range: "[MM]"
744
+ second:
745
+ type: integer
746
+ description: |-
747
+ Changes internal clock. Note: UTC is used
748
+ Second according to SS (00-59)
749
+ range: "[SS]"
750
+ command: setDate
751
+ Signal group:
752
+ description:
753
+ alarms:
754
+ A0008:
755
+ description: |-
756
+ Dead lock error.
757
+ Used for dead lock errors.
758
+ 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.
759
+ 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.
760
+ priority: 2
761
+ category: D
762
+ arguments:
763
+ timeplan:
764
+ type: integer
765
+ description: Current time plan
766
+ range: "[designation]"
767
+ A0101:
768
+ description: |-
769
+ Pushbutton error.
770
+ Used for push buttons.
771
+ priority: 3
772
+ category: D
773
+ A0201:
774
+ description: |-
775
+ Serious lamp error.
776
+ Used for lamp errors.
777
+ 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.
778
+ priority: 2
779
+ category: D
780
+ arguments:
781
+ color:
782
+ type: string
783
+ description: Color of lamp
784
+ values:
785
+ red: red
786
+ yellow: yellow
787
+ green: green
788
+ A0202:
789
+ description: |-
790
+ Less serious lamp error.
791
+ Used for lamp errors.
792
+ Is a "minor fault" defined according to 3.11 in EN12675.
793
+ priority: 3
794
+ category: D
795
+ arguments:
796
+ color:
797
+ type: string
798
+ description: Color of lamp
799
+ values:
800
+ red: red
801
+ yellow: yellow
802
+ green: green
803
+ statuses:
804
+ commands:
805
+ M0010:
806
+ description: |-
807
+ Start of signal group. Orders a signal group to green.
808
+ 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.
809
+ 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).
810
+ Requires security code 2
811
+ arguments:
812
+ status:
813
+ type: boolean
814
+ description: |-
815
+ False: No command (default)
816
+ True: Order a signal group to green
817
+ securityCode:
818
+ type: string
819
+ description: Security code 2
820
+ command: setStart
821
+ M0011:
822
+ description: |-
823
+ Stop of signal group. Orders a signal group to red.
824
+ 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.
825
+ 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).
826
+ Requires security code 2
827
+ arguments:
828
+ status:
829
+ type: boolean
830
+ description: |-
831
+ False: No command (default)
832
+ True: Order a signal group to red
833
+ securityCode:
834
+ type: string
835
+ description: Security code 2
836
+ command: setStop
837
+ Detector logic:
838
+ description:
839
+ alarms:
840
+ A0301:
841
+ description: |-
842
+ Detector error (hardware).
843
+ Is a "minor fault" defined according to 3.11 in EN12675.
844
+ priority: 3
845
+ category: D
846
+ arguments:
847
+ detector:
848
+ type: string
849
+ description: Designation of the detector (hardware)
850
+ range: "[designation]"
851
+ type:
852
+ type: string
853
+ description: Type of detector
854
+ values:
855
+ loop: Inductive detector loop
856
+ input: External input
857
+ errormode:
858
+ type: string
859
+ description: Detector forced on/off while detector error
860
+ values: ['on','off']
861
+ manual:
862
+ type: boolean
863
+ description: Manually controlled detector logic (True/False)
864
+ A0302:
865
+ description: |-
866
+ Detector error (logic error).
867
+ For instance; detector continuously on or off during an extended time.
868
+ Is a "minor fault" defined according to 3.11 in EN12675.
869
+ priority: 3
870
+ category: D
871
+ arguments:
872
+ detector:
873
+ type: string
874
+ description: Designation of the detector (hardware)
875
+ range: "[designation]"
876
+ type:
877
+ type: string
878
+ description: Type of detector.
879
+ values:
880
+ loop: Inductive detector loop
881
+ input: External input
882
+ errormode:
883
+ type: string
884
+ description: Detector forced on/off while detector error
885
+ values: ['on','off']
886
+ manual:
887
+ type: boolean
888
+ description: Manually controlled detector logic (True/False)
889
+ logicerror:
890
+ type: string
891
+ description: Type of logic error
892
+ values:
893
+ always_off: no detection during predefined max time
894
+ always_on: detection constantly on during predefined max time
895
+ intermittent: intermittent logic fault (flutter)
896
+ statuses:
897
+ S0201:
898
+ description: |-
899
+ Traffic Counting: Number of vehicles.
900
+ Used for Traffic counting.
901
+ arguments:
902
+ starttime:
903
+ type: timestamp
904
+ description: Time stamp for start of measuring. Format according to W3C
905
+ XML dateTime with a resolution of 3 decimal places. All time stamps
906
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
907
+ vehicles:
908
+ type: long
909
+ description: Number of vehicles on a given detector logic (since last
910
+ update)
911
+ range: "[number]"
912
+ S0202:
913
+ description: |-
914
+ Traffic Counting: Vehicle speed.
915
+ Used for Traffic counting.
916
+ arguments:
917
+ starttime:
918
+ type: timestamp
919
+ description: |-
920
+ Time stamp for start of measuring. Format according to W3C
921
+ XML dateTime with a resolution of 3 decimal places. All time stamps
922
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
923
+ speed:
924
+ type: integer
925
+ description: Average speed in km/h
926
+ range: "[speed]"
927
+ S0203:
928
+ description: |-
929
+ Traffic Counting: Occupancy.
930
+ Used for Traffic counting.
931
+ arguments:
932
+ starttime:
933
+ type: timestamp
934
+ description: |-
935
+ Time stamp for start of measuring. Format according to W3C
936
+ XML dateTime with a resolution of 3 decimal places. All time stamps
937
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
938
+ occupancy:
939
+ type: integer
940
+ description: Occupancy in percent (0-100%)
941
+ range: "[0-100]"
942
+ S0204:
943
+ description: |-
944
+ Traffic Counting: Number of vehicles of given classification.
945
+ Used for Traffic counting.
946
+ arguments:
947
+ starttime:
948
+ type: timestamp
949
+ description: |-
950
+ Time stamp for start of measuring. Format according to W3C
951
+ XML dateTime with a resolution of 3 decimal places. All time stamps
952
+ in UTC. E.g. 2009-10-02T14:34:34.341Z
953
+ P:
954
+ type: long
955
+ description: Number of cars
956
+ range: "[number]"
957
+ PS:
958
+ type: long
959
+ description: Number of cars with trailers
960
+ range: "[number]"
961
+ L:
962
+ type: long
963
+ description: Number of trucks
964
+ range: "[number]"
965
+ LS:
966
+ type: long
967
+ description: Number of trucks with trailers
968
+ range: "[number]"
969
+ B:
970
+ type: long
971
+ description: Number of busses
972
+ range: "[number]"
973
+ SP:
974
+ type: long
975
+ description: Number of trams
976
+ range: "[number]"
977
+ MC:
978
+ type: long
979
+ description: Number of motor cycles
980
+ range: "[number]"
981
+ C:
982
+ type: long
983
+ description: Number of bicycles
984
+ range: "[number]"
985
+ F:
986
+ type: long
987
+ description: Number of pedestrians
988
+ range: "[number]"
989
+ commands:
990
+ M0008:
991
+ description: |-
992
+ Sets manual activation of detector logic.
993
+ Set given detector logic (1-255) to either true or false.
994
+ Can e.g. be used to connect RSMP compatible detection equipment to the traffic light controller. Can also be used for prioritization.
995
+ Requires security code 2
996
+ arguments:
997
+ status:
998
+ type: boolean
999
+ description: |-
1000
+ False: Deactivate manual control of detector logic
1001
+ True: Activate manual control of detector logic
1002
+ securityCode:
1003
+ type: string
1004
+ description: Security code 2
1005
+ mode:
1006
+ type: boolean
1007
+ description: |-
1008
+ False: Deactivate detector logic
1009
+ True: Activate detector logic
1010
+ command: setForceDetectorLogic