rsmp 0.42.9 → 0.43.0

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