rsmp 0.42.8 → 0.43.0

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