rsmp 0.42.8 → 0.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -0
- data/CHANGELOG.md +7 -1
- data/Gemfile.lock +3 -5
- data/Rakefile +36 -0
- data/lib/rsmp/cli.rb +19 -32
- data/lib/rsmp/convert/export/json_schema/items.rb +55 -0
- data/lib/rsmp/convert/export/json_schema/outputs.rb +147 -0
- data/lib/rsmp/convert/export/json_schema/values.rb +120 -0
- data/lib/rsmp/convert/export/json_schema.rb +58 -0
- data/lib/rsmp/message.rb +0 -2
- data/lib/rsmp/proxy/modules/tasks.rb +1 -1
- data/lib/rsmp/schema.rb +210 -0
- data/lib/rsmp/schema_error.rb +19 -0
- data/lib/rsmp/version.rb +1 -1
- data/lib/rsmp.rb +6 -2
- data/rsmp.gemspec +2 -1
- data/schemas/core/3.1.2/aggregated_status.json +25 -0
- data/schemas/core/3.1.2/alarm.json +67 -0
- data/schemas/core/3.1.2/alarm_acknowledge.json +12 -0
- data/schemas/core/3.1.2/alarm_issue.json +47 -0
- data/schemas/core/3.1.2/alarm_suspend_resume.json +3 -0
- data/schemas/core/3.1.2/alarm_suspended_resumed.json +47 -0
- data/schemas/core/3.1.2/command_request.json +24 -0
- data/schemas/core/3.1.2/command_response.json +34 -0
- data/schemas/core/3.1.2/core.json +38 -0
- data/schemas/core/3.1.2/definitions.json +67 -0
- data/schemas/core/3.1.2/message_ack.json +11 -0
- data/schemas/core/3.1.2/message_not_ack.json +15 -0
- data/schemas/core/3.1.2/rsmp.json +124 -0
- data/schemas/core/3.1.2/status.json +21 -0
- data/schemas/core/3.1.2/status_request.json +5 -0
- data/schemas/core/3.1.2/status_response.json +26 -0
- data/schemas/core/3.1.2/status_subscribe.json +27 -0
- data/schemas/core/3.1.2/status_unsubscribe.json +5 -0
- data/schemas/core/3.1.2/status_update.json +26 -0
- data/schemas/core/3.1.2/version.json +47 -0
- data/schemas/core/3.1.2/watchdog.json +9 -0
- data/schemas/core/3.1.3/aggregated_status.json +25 -0
- data/schemas/core/3.1.3/alarm.json +67 -0
- data/schemas/core/3.1.3/alarm_acknowledge.json +12 -0
- data/schemas/core/3.1.3/alarm_issue.json +47 -0
- data/schemas/core/3.1.3/alarm_suspend_resume.json +3 -0
- data/schemas/core/3.1.3/alarm_suspended_resumed.json +47 -0
- data/schemas/core/3.1.3/command_request.json +24 -0
- data/schemas/core/3.1.3/command_response.json +34 -0
- data/schemas/core/3.1.3/core.json +38 -0
- data/schemas/core/3.1.3/definitions.json +67 -0
- data/schemas/core/3.1.3/message_ack.json +11 -0
- data/schemas/core/3.1.3/message_not_ack.json +15 -0
- data/schemas/core/3.1.3/rsmp.json +124 -0
- data/schemas/core/3.1.3/status.json +21 -0
- data/schemas/core/3.1.3/status_request.json +5 -0
- data/schemas/core/3.1.3/status_response.json +41 -0
- data/schemas/core/3.1.3/status_subscribe.json +27 -0
- data/schemas/core/3.1.3/status_unsubscribe.json +5 -0
- data/schemas/core/3.1.3/status_update.json +41 -0
- data/schemas/core/3.1.3/version.json +47 -0
- data/schemas/core/3.1.3/watchdog.json +9 -0
- data/schemas/core/3.1.4/aggregated_status.json +25 -0
- data/schemas/core/3.1.4/alarm.json +65 -0
- data/schemas/core/3.1.4/alarm_acknowledge.json +12 -0
- data/schemas/core/3.1.4/alarm_issue.json +47 -0
- data/schemas/core/3.1.4/alarm_suspend_resume.json +3 -0
- data/schemas/core/3.1.4/alarm_suspended_resumed.json +47 -0
- data/schemas/core/3.1.4/command_request.json +24 -0
- data/schemas/core/3.1.4/command_response.json +34 -0
- data/schemas/core/3.1.4/core.json +38 -0
- data/schemas/core/3.1.4/definitions.json +67 -0
- data/schemas/core/3.1.4/message_ack.json +11 -0
- data/schemas/core/3.1.4/message_not_ack.json +15 -0
- data/schemas/core/3.1.4/rsmp.json +124 -0
- data/schemas/core/3.1.4/status.json +21 -0
- data/schemas/core/3.1.4/status_request.json +5 -0
- data/schemas/core/3.1.4/status_response.json +41 -0
- data/schemas/core/3.1.4/status_subscribe.json +27 -0
- data/schemas/core/3.1.4/status_unsubscribe.json +5 -0
- data/schemas/core/3.1.4/status_update.json +41 -0
- data/schemas/core/3.1.4/version.json +47 -0
- data/schemas/core/3.1.4/watchdog.json +9 -0
- data/schemas/core/3.1.5/aggregated_status.json +25 -0
- data/schemas/core/3.1.5/aggregated_status_request.json +9 -0
- data/schemas/core/3.1.5/alarm.json +75 -0
- data/schemas/core/3.1.5/alarm_acknowledge.json +12 -0
- data/schemas/core/3.1.5/alarm_issue.json +47 -0
- data/schemas/core/3.1.5/alarm_request.json +3 -0
- data/schemas/core/3.1.5/alarm_suspend_resume.json +3 -0
- data/schemas/core/3.1.5/alarm_suspended_resumed.json +47 -0
- data/schemas/core/3.1.5/command_request.json +24 -0
- data/schemas/core/3.1.5/command_response.json +34 -0
- data/schemas/core/3.1.5/core.json +39 -0
- data/schemas/core/3.1.5/definitions.json +67 -0
- data/schemas/core/3.1.5/message_ack.json +11 -0
- data/schemas/core/3.1.5/message_not_ack.json +15 -0
- data/schemas/core/3.1.5/rsmp.json +133 -0
- data/schemas/core/3.1.5/status.json +21 -0
- data/schemas/core/3.1.5/status_request.json +5 -0
- data/schemas/core/3.1.5/status_response.json +41 -0
- data/schemas/core/3.1.5/status_subscribe.json +31 -0
- data/schemas/core/3.1.5/status_unsubscribe.json +5 -0
- data/schemas/core/3.1.5/status_update.json +41 -0
- data/schemas/core/3.1.5/version.json +47 -0
- data/schemas/core/3.1.5/watchdog.json +9 -0
- data/schemas/core/3.2.0/aggregated_status.json +25 -0
- data/schemas/core/3.2.0/aggregated_status_request.json +9 -0
- data/schemas/core/3.2.0/alarm.json +71 -0
- data/schemas/core/3.2.0/alarm_acknowledge.json +11 -0
- data/schemas/core/3.2.0/alarm_issue.json +44 -0
- data/schemas/core/3.2.0/alarm_request.json +3 -0
- data/schemas/core/3.2.0/alarm_suspend_resume.json +3 -0
- data/schemas/core/3.2.0/alarm_suspended_resumed.json +44 -0
- data/schemas/core/3.2.0/command_request.json +24 -0
- data/schemas/core/3.2.0/command_response.json +34 -0
- data/schemas/core/3.2.0/core.json +39 -0
- data/schemas/core/3.2.0/definitions.json +67 -0
- data/schemas/core/3.2.0/message_ack.json +11 -0
- data/schemas/core/3.2.0/message_not_ack.json +15 -0
- data/schemas/core/3.2.0/rsmp.json +133 -0
- data/schemas/core/3.2.0/status.json +21 -0
- data/schemas/core/3.2.0/status_request.json +5 -0
- data/schemas/core/3.2.0/status_response.json +41 -0
- data/schemas/core/3.2.0/status_subscribe.json +31 -0
- data/schemas/core/3.2.0/status_unsubscribe.json +5 -0
- data/schemas/core/3.2.0/status_update.json +41 -0
- data/schemas/core/3.2.0/version.json +47 -0
- data/schemas/core/3.2.0/watchdog.json +9 -0
- data/schemas/core/3.2.1/aggregated_status.json +25 -0
- data/schemas/core/3.2.1/aggregated_status_request.json +9 -0
- data/schemas/core/3.2.1/alarm.json +71 -0
- data/schemas/core/3.2.1/alarm_acknowledge.json +11 -0
- data/schemas/core/3.2.1/alarm_issue.json +44 -0
- data/schemas/core/3.2.1/alarm_request.json +3 -0
- data/schemas/core/3.2.1/alarm_suspend_resume.json +3 -0
- data/schemas/core/3.2.1/alarm_suspended_resumed.json +44 -0
- data/schemas/core/3.2.1/command_request.json +24 -0
- data/schemas/core/3.2.1/command_response.json +34 -0
- data/schemas/core/3.2.1/core.json +39 -0
- data/schemas/core/3.2.1/definitions.json +67 -0
- data/schemas/core/3.2.1/message_ack.json +11 -0
- data/schemas/core/3.2.1/message_not_ack.json +15 -0
- data/schemas/core/3.2.1/rsmp.json +133 -0
- data/schemas/core/3.2.1/status.json +21 -0
- data/schemas/core/3.2.1/status_request.json +5 -0
- data/schemas/core/3.2.1/status_response.json +41 -0
- data/schemas/core/3.2.1/status_subscribe.json +31 -0
- data/schemas/core/3.2.1/status_unsubscribe.json +5 -0
- data/schemas/core/3.2.1/status_update.json +41 -0
- data/schemas/core/3.2.1/version.json +47 -0
- data/schemas/core/3.2.1/watchdog.json +9 -0
- data/schemas/core/3.2.2/aggregated_status.json +25 -0
- data/schemas/core/3.2.2/aggregated_status_request.json +9 -0
- data/schemas/core/3.2.2/alarm.json +71 -0
- data/schemas/core/3.2.2/alarm_acknowledge.json +11 -0
- data/schemas/core/3.2.2/alarm_issue.json +44 -0
- data/schemas/core/3.2.2/alarm_request.json +3 -0
- data/schemas/core/3.2.2/alarm_suspend_resume.json +3 -0
- data/schemas/core/3.2.2/alarm_suspended_resumed.json +44 -0
- data/schemas/core/3.2.2/command_request.json +24 -0
- data/schemas/core/3.2.2/command_response.json +34 -0
- data/schemas/core/3.2.2/core.json +39 -0
- data/schemas/core/3.2.2/definitions.json +67 -0
- data/schemas/core/3.2.2/message_ack.json +11 -0
- data/schemas/core/3.2.2/message_not_ack.json +15 -0
- data/schemas/core/3.2.2/rsmp.json +133 -0
- data/schemas/core/3.2.2/status.json +21 -0
- data/schemas/core/3.2.2/status_request.json +5 -0
- data/schemas/core/3.2.2/status_response.json +41 -0
- data/schemas/core/3.2.2/status_subscribe.json +31 -0
- data/schemas/core/3.2.2/status_unsubscribe.json +5 -0
- data/schemas/core/3.2.2/status_update.json +41 -0
- data/schemas/core/3.2.2/version.json +47 -0
- data/schemas/core/3.2.2/watchdog.json +9 -0
- data/schemas/tlc/1.0.10/alarms/A0001.json +4 -0
- data/schemas/tlc/1.0.10/alarms/A0002.json +4 -0
- data/schemas/tlc/1.0.10/alarms/A0003.json +4 -0
- data/schemas/tlc/1.0.10/alarms/A0004.json +4 -0
- data/schemas/tlc/1.0.10/alarms/A0005.json +4 -0
- data/schemas/tlc/1.0.10/alarms/A0006.json +4 -0
- data/schemas/tlc/1.0.10/alarms/A0007.json +4 -0
- data/schemas/tlc/1.0.10/alarms/A0008.json +30 -0
- data/schemas/tlc/1.0.10/alarms/A0009.json +4 -0
- data/schemas/tlc/1.0.10/alarms/A0101.json +4 -0
- data/schemas/tlc/1.0.10/alarms/A0201.json +35 -0
- data/schemas/tlc/1.0.10/alarms/A0202.json +35 -0
- data/schemas/tlc/1.0.10/alarms/A0301.json +92 -0
- data/schemas/tlc/1.0.10/alarms/A0302.json +115 -0
- data/schemas/tlc/1.0.10/alarms/alarms.json +239 -0
- data/schemas/tlc/1.0.10/commands/M0001.json +92 -0
- data/schemas/tlc/1.0.10/commands/M0002.json +69 -0
- data/schemas/tlc/1.0.10/commands/M0003.json +69 -0
- data/schemas/tlc/1.0.10/commands/M0004.json +51 -0
- data/schemas/tlc/1.0.10/commands/M0005.json +69 -0
- data/schemas/tlc/1.0.10/commands/M0006.json +69 -0
- data/schemas/tlc/1.0.10/commands/M0007.json +51 -0
- data/schemas/tlc/1.0.10/commands/M0008.json +69 -0
- data/schemas/tlc/1.0.10/commands/M0010.json +51 -0
- data/schemas/tlc/1.0.10/commands/M0011.json +51 -0
- data/schemas/tlc/1.0.10/commands/M0012.json +51 -0
- data/schemas/tlc/1.0.10/commands/M0013.json +51 -0
- data/schemas/tlc/1.0.10/commands/M0019.json +87 -0
- data/schemas/tlc/1.0.10/commands/M0103.json +72 -0
- data/schemas/tlc/1.0.10/commands/M0104.json +141 -0
- data/schemas/tlc/1.0.10/commands/command_requests.json +8 -0
- data/schemas/tlc/1.0.10/commands/command_responses.json +8 -0
- data/schemas/tlc/1.0.10/commands/commands.json +255 -0
- data/schemas/tlc/1.0.10/defs/definitions.json +67 -0
- data/schemas/tlc/1.0.10/defs/guards.json +24 -0
- data/schemas/tlc/1.0.10/rsmp.json +74 -0
- data/schemas/tlc/1.0.10/statuses/S0001.json +91 -0
- data/schemas/tlc/1.0.10/statuses/S0002.json +36 -0
- data/schemas/tlc/1.0.10/statuses/S0003.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0004.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0005.json +36 -0
- data/schemas/tlc/1.0.10/statuses/S0006.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0007.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0008.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0009.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0010.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0011.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0012.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0013.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0014.json +36 -0
- data/schemas/tlc/1.0.10/statuses/S0015.json +36 -0
- data/schemas/tlc/1.0.10/statuses/S0016.json +36 -0
- data/schemas/tlc/1.0.10/statuses/S0017.json +36 -0
- data/schemas/tlc/1.0.10/statuses/S0018.json +36 -0
- data/schemas/tlc/1.0.10/statuses/S0019.json +36 -0
- data/schemas/tlc/1.0.10/statuses/S0020.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0021.json +37 -0
- data/schemas/tlc/1.0.10/statuses/S0091.json +57 -0
- data/schemas/tlc/1.0.10/statuses/S0092.json +57 -0
- data/schemas/tlc/1.0.10/statuses/S0095.json +36 -0
- data/schemas/tlc/1.0.10/statuses/S0096.json +126 -0
- data/schemas/tlc/1.0.10/statuses/S0201.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0202.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0203.json +54 -0
- data/schemas/tlc/1.0.10/statuses/S0204.json +198 -0
- data/schemas/tlc/1.0.10/statuses/statuses.json +483 -0
- data/schemas/tlc/1.0.10/sxl.yaml +1010 -0
- data/schemas/tlc/1.0.13/alarms/A0001.json +4 -0
- data/schemas/tlc/1.0.13/alarms/A0002.json +4 -0
- data/schemas/tlc/1.0.13/alarms/A0003.json +4 -0
- data/schemas/tlc/1.0.13/alarms/A0004.json +4 -0
- data/schemas/tlc/1.0.13/alarms/A0005.json +4 -0
- data/schemas/tlc/1.0.13/alarms/A0006.json +4 -0
- data/schemas/tlc/1.0.13/alarms/A0007.json +4 -0
- data/schemas/tlc/1.0.13/alarms/A0008.json +30 -0
- data/schemas/tlc/1.0.13/alarms/A0009.json +4 -0
- data/schemas/tlc/1.0.13/alarms/A0101.json +4 -0
- data/schemas/tlc/1.0.13/alarms/A0201.json +35 -0
- data/schemas/tlc/1.0.13/alarms/A0202.json +35 -0
- data/schemas/tlc/1.0.13/alarms/A0301.json +92 -0
- data/schemas/tlc/1.0.13/alarms/A0302.json +115 -0
- data/schemas/tlc/1.0.13/alarms/alarms.json +239 -0
- data/schemas/tlc/1.0.13/commands/M0001.json +92 -0
- data/schemas/tlc/1.0.13/commands/M0002.json +69 -0
- data/schemas/tlc/1.0.13/commands/M0003.json +69 -0
- data/schemas/tlc/1.0.13/commands/M0004.json +51 -0
- data/schemas/tlc/1.0.13/commands/M0005.json +69 -0
- data/schemas/tlc/1.0.13/commands/M0006.json +69 -0
- data/schemas/tlc/1.0.13/commands/M0007.json +51 -0
- data/schemas/tlc/1.0.13/commands/M0008.json +69 -0
- data/schemas/tlc/1.0.13/commands/M0010.json +51 -0
- data/schemas/tlc/1.0.13/commands/M0011.json +51 -0
- data/schemas/tlc/1.0.13/commands/M0012.json +51 -0
- data/schemas/tlc/1.0.13/commands/M0013.json +51 -0
- data/schemas/tlc/1.0.13/commands/M0014.json +69 -0
- data/schemas/tlc/1.0.13/commands/M0015.json +69 -0
- data/schemas/tlc/1.0.13/commands/M0016.json +51 -0
- data/schemas/tlc/1.0.13/commands/M0017.json +51 -0
- data/schemas/tlc/1.0.13/commands/M0018.json +69 -0
- data/schemas/tlc/1.0.13/commands/M0019.json +87 -0
- data/schemas/tlc/1.0.13/commands/M0103.json +72 -0
- data/schemas/tlc/1.0.13/commands/M0104.json +141 -0
- data/schemas/tlc/1.0.13/commands/command_requests.json +8 -0
- data/schemas/tlc/1.0.13/commands/command_responses.json +8 -0
- data/schemas/tlc/1.0.13/commands/commands.json +335 -0
- data/schemas/tlc/1.0.13/defs/definitions.json +67 -0
- data/schemas/tlc/1.0.13/defs/guards.json +24 -0
- data/schemas/tlc/1.0.13/rsmp.json +74 -0
- data/schemas/tlc/1.0.13/statuses/S0001.json +91 -0
- data/schemas/tlc/1.0.13/statuses/S0002.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0003.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0004.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0005.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0006.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0007.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0008.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0009.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0010.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0011.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0012.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0013.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0014.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0015.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0016.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0017.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0018.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0019.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0020.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0021.json +37 -0
- data/schemas/tlc/1.0.13/statuses/S0022.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0023.json +37 -0
- data/schemas/tlc/1.0.13/statuses/S0024.json +37 -0
- data/schemas/tlc/1.0.13/statuses/S0025.json +162 -0
- data/schemas/tlc/1.0.13/statuses/S0026.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0027.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0028.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0029.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0091.json +57 -0
- data/schemas/tlc/1.0.13/statuses/S0092.json +57 -0
- data/schemas/tlc/1.0.13/statuses/S0095.json +36 -0
- data/schemas/tlc/1.0.13/statuses/S0096.json +126 -0
- data/schemas/tlc/1.0.13/statuses/S0201.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0202.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0203.json +54 -0
- data/schemas/tlc/1.0.13/statuses/S0204.json +198 -0
- data/schemas/tlc/1.0.13/statuses/statuses.json +611 -0
- data/schemas/tlc/1.0.13/sxl.yaml +1312 -0
- data/schemas/tlc/1.0.14/alarms/A0001.json +4 -0
- data/schemas/tlc/1.0.14/alarms/A0002.json +4 -0
- data/schemas/tlc/1.0.14/alarms/A0003.json +4 -0
- data/schemas/tlc/1.0.14/alarms/A0004.json +4 -0
- data/schemas/tlc/1.0.14/alarms/A0005.json +4 -0
- data/schemas/tlc/1.0.14/alarms/A0006.json +4 -0
- data/schemas/tlc/1.0.14/alarms/A0007.json +4 -0
- data/schemas/tlc/1.0.14/alarms/A0008.json +30 -0
- data/schemas/tlc/1.0.14/alarms/A0009.json +4 -0
- data/schemas/tlc/1.0.14/alarms/A0101.json +4 -0
- data/schemas/tlc/1.0.14/alarms/A0201.json +35 -0
- data/schemas/tlc/1.0.14/alarms/A0202.json +35 -0
- data/schemas/tlc/1.0.14/alarms/A0301.json +92 -0
- data/schemas/tlc/1.0.14/alarms/A0302.json +115 -0
- data/schemas/tlc/1.0.14/alarms/alarms.json +239 -0
- data/schemas/tlc/1.0.14/commands/M0001.json +92 -0
- data/schemas/tlc/1.0.14/commands/M0002.json +69 -0
- data/schemas/tlc/1.0.14/commands/M0003.json +69 -0
- data/schemas/tlc/1.0.14/commands/M0004.json +51 -0
- data/schemas/tlc/1.0.14/commands/M0005.json +69 -0
- data/schemas/tlc/1.0.14/commands/M0006.json +69 -0
- data/schemas/tlc/1.0.14/commands/M0007.json +51 -0
- data/schemas/tlc/1.0.14/commands/M0008.json +69 -0
- data/schemas/tlc/1.0.14/commands/M0010.json +51 -0
- data/schemas/tlc/1.0.14/commands/M0011.json +51 -0
- data/schemas/tlc/1.0.14/commands/M0012.json +51 -0
- data/schemas/tlc/1.0.14/commands/M0013.json +51 -0
- data/schemas/tlc/1.0.14/commands/M0014.json +69 -0
- data/schemas/tlc/1.0.14/commands/M0015.json +69 -0
- data/schemas/tlc/1.0.14/commands/M0016.json +51 -0
- data/schemas/tlc/1.0.14/commands/M0017.json +51 -0
- data/schemas/tlc/1.0.14/commands/M0018.json +69 -0
- data/schemas/tlc/1.0.14/commands/M0019.json +87 -0
- data/schemas/tlc/1.0.14/commands/M0103.json +72 -0
- data/schemas/tlc/1.0.14/commands/M0104.json +141 -0
- data/schemas/tlc/1.0.14/commands/command_requests.json +8 -0
- data/schemas/tlc/1.0.14/commands/command_responses.json +8 -0
- data/schemas/tlc/1.0.14/commands/commands.json +335 -0
- data/schemas/tlc/1.0.14/defs/definitions.json +67 -0
- data/schemas/tlc/1.0.14/defs/guards.json +24 -0
- data/schemas/tlc/1.0.14/rsmp.json +74 -0
- data/schemas/tlc/1.0.14/statuses/S0001.json +91 -0
- data/schemas/tlc/1.0.14/statuses/S0002.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0003.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0004.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0005.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0006.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0007.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0008.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0009.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0010.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0011.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0012.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0013.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0014.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0015.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0016.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0017.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0018.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0019.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0020.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0021.json +37 -0
- data/schemas/tlc/1.0.14/statuses/S0022.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0023.json +37 -0
- data/schemas/tlc/1.0.14/statuses/S0024.json +37 -0
- data/schemas/tlc/1.0.14/statuses/S0025.json +162 -0
- data/schemas/tlc/1.0.14/statuses/S0026.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0027.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0028.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0029.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0091.json +57 -0
- data/schemas/tlc/1.0.14/statuses/S0092.json +57 -0
- data/schemas/tlc/1.0.14/statuses/S0095.json +36 -0
- data/schemas/tlc/1.0.14/statuses/S0096.json +126 -0
- data/schemas/tlc/1.0.14/statuses/S0201.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0202.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0203.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0204.json +198 -0
- data/schemas/tlc/1.0.14/statuses/S0205.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0206.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0207.json +54 -0
- data/schemas/tlc/1.0.14/statuses/S0208.json +198 -0
- data/schemas/tlc/1.0.14/statuses/statuses.json +675 -0
- data/schemas/tlc/1.0.14/sxl.yaml +1450 -0
- data/schemas/tlc/1.0.15/alarms/A0001.json +4 -0
- data/schemas/tlc/1.0.15/alarms/A0002.json +4 -0
- data/schemas/tlc/1.0.15/alarms/A0003.json +4 -0
- data/schemas/tlc/1.0.15/alarms/A0004.json +4 -0
- data/schemas/tlc/1.0.15/alarms/A0005.json +4 -0
- data/schemas/tlc/1.0.15/alarms/A0006.json +4 -0
- data/schemas/tlc/1.0.15/alarms/A0007.json +4 -0
- data/schemas/tlc/1.0.15/alarms/A0008.json +30 -0
- data/schemas/tlc/1.0.15/alarms/A0009.json +4 -0
- data/schemas/tlc/1.0.15/alarms/A0010.json +4 -0
- data/schemas/tlc/1.0.15/alarms/A0101.json +4 -0
- data/schemas/tlc/1.0.15/alarms/A0201.json +35 -0
- data/schemas/tlc/1.0.15/alarms/A0202.json +35 -0
- data/schemas/tlc/1.0.15/alarms/A0301.json +92 -0
- data/schemas/tlc/1.0.15/alarms/A0302.json +115 -0
- data/schemas/tlc/1.0.15/alarms/alarms.json +255 -0
- data/schemas/tlc/1.0.15/commands/M0001.json +92 -0
- data/schemas/tlc/1.0.15/commands/M0002.json +69 -0
- data/schemas/tlc/1.0.15/commands/M0003.json +69 -0
- data/schemas/tlc/1.0.15/commands/M0004.json +51 -0
- data/schemas/tlc/1.0.15/commands/M0005.json +69 -0
- data/schemas/tlc/1.0.15/commands/M0006.json +69 -0
- data/schemas/tlc/1.0.15/commands/M0007.json +51 -0
- data/schemas/tlc/1.0.15/commands/M0008.json +69 -0
- data/schemas/tlc/1.0.15/commands/M0010.json +51 -0
- data/schemas/tlc/1.0.15/commands/M0011.json +51 -0
- data/schemas/tlc/1.0.15/commands/M0012.json +51 -0
- data/schemas/tlc/1.0.15/commands/M0013.json +51 -0
- data/schemas/tlc/1.0.15/commands/M0014.json +69 -0
- data/schemas/tlc/1.0.15/commands/M0015.json +69 -0
- data/schemas/tlc/1.0.15/commands/M0016.json +51 -0
- data/schemas/tlc/1.0.15/commands/M0017.json +51 -0
- data/schemas/tlc/1.0.15/commands/M0018.json +69 -0
- data/schemas/tlc/1.0.15/commands/M0019.json +87 -0
- data/schemas/tlc/1.0.15/commands/M0020.json +87 -0
- data/schemas/tlc/1.0.15/commands/M0021.json +51 -0
- data/schemas/tlc/1.0.15/commands/M0103.json +72 -0
- data/schemas/tlc/1.0.15/commands/M0104.json +141 -0
- data/schemas/tlc/1.0.15/commands/command_requests.json +8 -0
- data/schemas/tlc/1.0.15/commands/command_responses.json +8 -0
- data/schemas/tlc/1.0.15/commands/commands.json +367 -0
- data/schemas/tlc/1.0.15/defs/definitions.json +67 -0
- data/schemas/tlc/1.0.15/defs/guards.json +24 -0
- data/schemas/tlc/1.0.15/rsmp.json +74 -0
- data/schemas/tlc/1.0.15/statuses/S0001.json +91 -0
- data/schemas/tlc/1.0.15/statuses/S0002.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0003.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0004.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0005.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0006.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0007.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0008.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0009.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0010.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0011.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0012.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0013.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0014.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0015.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0016.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0017.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0018.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0019.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0020.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0021.json +37 -0
- data/schemas/tlc/1.0.15/statuses/S0022.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0023.json +37 -0
- data/schemas/tlc/1.0.15/statuses/S0024.json +37 -0
- data/schemas/tlc/1.0.15/statuses/S0025.json +162 -0
- data/schemas/tlc/1.0.15/statuses/S0026.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0027.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0028.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0029.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0030.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0031.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0091.json +57 -0
- data/schemas/tlc/1.0.15/statuses/S0092.json +57 -0
- data/schemas/tlc/1.0.15/statuses/S0095.json +36 -0
- data/schemas/tlc/1.0.15/statuses/S0096.json +126 -0
- data/schemas/tlc/1.0.15/statuses/S0097.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0098.json +72 -0
- data/schemas/tlc/1.0.15/statuses/S0201.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0202.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0203.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0204.json +198 -0
- data/schemas/tlc/1.0.15/statuses/S0205.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0206.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0207.json +54 -0
- data/schemas/tlc/1.0.15/statuses/S0208.json +198 -0
- data/schemas/tlc/1.0.15/statuses/statuses.json +739 -0
- data/schemas/tlc/1.0.15/sxl.yaml +1589 -0
- data/schemas/tlc/1.0.7/alarms/A0001.json +4 -0
- data/schemas/tlc/1.0.7/alarms/A0002.json +4 -0
- data/schemas/tlc/1.0.7/alarms/A0003.json +4 -0
- data/schemas/tlc/1.0.7/alarms/A0004.json +4 -0
- data/schemas/tlc/1.0.7/alarms/A0005.json +4 -0
- data/schemas/tlc/1.0.7/alarms/A0006.json +4 -0
- data/schemas/tlc/1.0.7/alarms/A0007.json +4 -0
- data/schemas/tlc/1.0.7/alarms/A0008.json +30 -0
- data/schemas/tlc/1.0.7/alarms/A0009.json +4 -0
- data/schemas/tlc/1.0.7/alarms/A0101.json +4 -0
- data/schemas/tlc/1.0.7/alarms/A0201.json +35 -0
- data/schemas/tlc/1.0.7/alarms/A0202.json +35 -0
- data/schemas/tlc/1.0.7/alarms/A0301.json +92 -0
- data/schemas/tlc/1.0.7/alarms/A0302.json +115 -0
- data/schemas/tlc/1.0.7/alarms/alarms.json +239 -0
- data/schemas/tlc/1.0.7/commands/M0001.json +92 -0
- data/schemas/tlc/1.0.7/commands/M0002.json +69 -0
- data/schemas/tlc/1.0.7/commands/M0003.json +69 -0
- data/schemas/tlc/1.0.7/commands/M0004.json +51 -0
- data/schemas/tlc/1.0.7/commands/M0005.json +69 -0
- data/schemas/tlc/1.0.7/commands/M0006.json +69 -0
- data/schemas/tlc/1.0.7/commands/M0007.json +51 -0
- data/schemas/tlc/1.0.7/commands/M0008.json +69 -0
- data/schemas/tlc/1.0.7/commands/M0010.json +51 -0
- data/schemas/tlc/1.0.7/commands/M0011.json +51 -0
- data/schemas/tlc/1.0.7/commands/M0019.json +87 -0
- data/schemas/tlc/1.0.7/commands/M0103.json +72 -0
- data/schemas/tlc/1.0.7/commands/M0104.json +141 -0
- data/schemas/tlc/1.0.7/commands/command_requests.json +8 -0
- data/schemas/tlc/1.0.7/commands/command_responses.json +8 -0
- data/schemas/tlc/1.0.7/commands/commands.json +223 -0
- data/schemas/tlc/1.0.7/defs/definitions.json +67 -0
- data/schemas/tlc/1.0.7/defs/guards.json +24 -0
- data/schemas/tlc/1.0.7/rsmp.json +74 -0
- data/schemas/tlc/1.0.7/statuses/S0001.json +91 -0
- data/schemas/tlc/1.0.7/statuses/S0002.json +36 -0
- data/schemas/tlc/1.0.7/statuses/S0003.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0004.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0005.json +36 -0
- data/schemas/tlc/1.0.7/statuses/S0006.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0007.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0008.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0009.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0010.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0011.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0012.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0013.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0014.json +36 -0
- data/schemas/tlc/1.0.7/statuses/S0015.json +36 -0
- data/schemas/tlc/1.0.7/statuses/S0016.json +36 -0
- data/schemas/tlc/1.0.7/statuses/S0017.json +36 -0
- data/schemas/tlc/1.0.7/statuses/S0018.json +36 -0
- data/schemas/tlc/1.0.7/statuses/S0019.json +36 -0
- data/schemas/tlc/1.0.7/statuses/S0020.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0021.json +37 -0
- data/schemas/tlc/1.0.7/statuses/S0025.json +162 -0
- data/schemas/tlc/1.0.7/statuses/S0091.json +57 -0
- data/schemas/tlc/1.0.7/statuses/S0092.json +57 -0
- data/schemas/tlc/1.0.7/statuses/S0095.json +36 -0
- data/schemas/tlc/1.0.7/statuses/S0096.json +126 -0
- data/schemas/tlc/1.0.7/statuses/S0201.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0202.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0203.json +54 -0
- data/schemas/tlc/1.0.7/statuses/S0204.json +198 -0
- data/schemas/tlc/1.0.7/statuses/statuses.json +499 -0
- data/schemas/tlc/1.0.7/sxl.yaml +981 -0
- data/schemas/tlc/1.0.8/alarms/A0001.json +4 -0
- data/schemas/tlc/1.0.8/alarms/A0002.json +4 -0
- data/schemas/tlc/1.0.8/alarms/A0003.json +4 -0
- data/schemas/tlc/1.0.8/alarms/A0004.json +4 -0
- data/schemas/tlc/1.0.8/alarms/A0005.json +4 -0
- data/schemas/tlc/1.0.8/alarms/A0006.json +4 -0
- data/schemas/tlc/1.0.8/alarms/A0007.json +4 -0
- data/schemas/tlc/1.0.8/alarms/A0008.json +30 -0
- data/schemas/tlc/1.0.8/alarms/A0009.json +4 -0
- data/schemas/tlc/1.0.8/alarms/A0101.json +4 -0
- data/schemas/tlc/1.0.8/alarms/A0201.json +35 -0
- data/schemas/tlc/1.0.8/alarms/A0202.json +35 -0
- data/schemas/tlc/1.0.8/alarms/A0301.json +92 -0
- data/schemas/tlc/1.0.8/alarms/A0302.json +115 -0
- data/schemas/tlc/1.0.8/alarms/alarms.json +239 -0
- data/schemas/tlc/1.0.8/commands/M0001.json +92 -0
- data/schemas/tlc/1.0.8/commands/M0002.json +69 -0
- data/schemas/tlc/1.0.8/commands/M0003.json +69 -0
- data/schemas/tlc/1.0.8/commands/M0004.json +51 -0
- data/schemas/tlc/1.0.8/commands/M0005.json +69 -0
- data/schemas/tlc/1.0.8/commands/M0006.json +69 -0
- data/schemas/tlc/1.0.8/commands/M0007.json +51 -0
- data/schemas/tlc/1.0.8/commands/M0008.json +69 -0
- data/schemas/tlc/1.0.8/commands/M0010.json +51 -0
- data/schemas/tlc/1.0.8/commands/M0011.json +51 -0
- data/schemas/tlc/1.0.8/commands/M0012.json +51 -0
- data/schemas/tlc/1.0.8/commands/M0013.json +51 -0
- data/schemas/tlc/1.0.8/commands/M0019.json +87 -0
- data/schemas/tlc/1.0.8/commands/M0103.json +72 -0
- data/schemas/tlc/1.0.8/commands/M0104.json +141 -0
- data/schemas/tlc/1.0.8/commands/command_requests.json +8 -0
- data/schemas/tlc/1.0.8/commands/command_responses.json +8 -0
- data/schemas/tlc/1.0.8/commands/commands.json +255 -0
- data/schemas/tlc/1.0.8/defs/definitions.json +67 -0
- data/schemas/tlc/1.0.8/defs/guards.json +24 -0
- data/schemas/tlc/1.0.8/rsmp.json +74 -0
- data/schemas/tlc/1.0.8/statuses/S0001.json +91 -0
- data/schemas/tlc/1.0.8/statuses/S0002.json +36 -0
- data/schemas/tlc/1.0.8/statuses/S0003.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0004.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0005.json +36 -0
- data/schemas/tlc/1.0.8/statuses/S0006.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0007.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0008.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0009.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0010.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0011.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0012.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0013.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0014.json +36 -0
- data/schemas/tlc/1.0.8/statuses/S0015.json +36 -0
- data/schemas/tlc/1.0.8/statuses/S0016.json +36 -0
- data/schemas/tlc/1.0.8/statuses/S0017.json +36 -0
- data/schemas/tlc/1.0.8/statuses/S0018.json +36 -0
- data/schemas/tlc/1.0.8/statuses/S0019.json +36 -0
- data/schemas/tlc/1.0.8/statuses/S0020.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0021.json +37 -0
- data/schemas/tlc/1.0.8/statuses/S0025.json +181 -0
- data/schemas/tlc/1.0.8/statuses/S0091.json +57 -0
- data/schemas/tlc/1.0.8/statuses/S0092.json +57 -0
- data/schemas/tlc/1.0.8/statuses/S0095.json +36 -0
- data/schemas/tlc/1.0.8/statuses/S0096.json +126 -0
- data/schemas/tlc/1.0.8/statuses/S0201.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0202.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0203.json +54 -0
- data/schemas/tlc/1.0.8/statuses/S0204.json +198 -0
- data/schemas/tlc/1.0.8/statuses/statuses.json +483 -0
- data/schemas/tlc/1.0.8/sxl.yaml +1010 -0
- data/schemas/tlc/1.0.9/alarms/A0001.json +4 -0
- data/schemas/tlc/1.0.9/alarms/A0002.json +4 -0
- data/schemas/tlc/1.0.9/alarms/A0003.json +4 -0
- data/schemas/tlc/1.0.9/alarms/A0004.json +4 -0
- data/schemas/tlc/1.0.9/alarms/A0005.json +4 -0
- data/schemas/tlc/1.0.9/alarms/A0006.json +4 -0
- data/schemas/tlc/1.0.9/alarms/A0007.json +4 -0
- data/schemas/tlc/1.0.9/alarms/A0008.json +30 -0
- data/schemas/tlc/1.0.9/alarms/A0009.json +4 -0
- data/schemas/tlc/1.0.9/alarms/A0101.json +4 -0
- data/schemas/tlc/1.0.9/alarms/A0201.json +35 -0
- data/schemas/tlc/1.0.9/alarms/A0202.json +35 -0
- data/schemas/tlc/1.0.9/alarms/A0301.json +92 -0
- data/schemas/tlc/1.0.9/alarms/A0302.json +115 -0
- data/schemas/tlc/1.0.9/alarms/alarms.json +239 -0
- data/schemas/tlc/1.0.9/commands/M0001.json +92 -0
- data/schemas/tlc/1.0.9/commands/M0002.json +69 -0
- data/schemas/tlc/1.0.9/commands/M0003.json +69 -0
- data/schemas/tlc/1.0.9/commands/M0004.json +51 -0
- data/schemas/tlc/1.0.9/commands/M0005.json +69 -0
- data/schemas/tlc/1.0.9/commands/M0006.json +69 -0
- data/schemas/tlc/1.0.9/commands/M0007.json +51 -0
- data/schemas/tlc/1.0.9/commands/M0008.json +69 -0
- data/schemas/tlc/1.0.9/commands/M0010.json +51 -0
- data/schemas/tlc/1.0.9/commands/M0011.json +51 -0
- data/schemas/tlc/1.0.9/commands/M0012.json +51 -0
- data/schemas/tlc/1.0.9/commands/M0013.json +51 -0
- data/schemas/tlc/1.0.9/commands/M0019.json +87 -0
- data/schemas/tlc/1.0.9/commands/M0103.json +72 -0
- data/schemas/tlc/1.0.9/commands/M0104.json +141 -0
- data/schemas/tlc/1.0.9/commands/command_requests.json +8 -0
- data/schemas/tlc/1.0.9/commands/command_responses.json +8 -0
- data/schemas/tlc/1.0.9/commands/commands.json +255 -0
- data/schemas/tlc/1.0.9/defs/definitions.json +67 -0
- data/schemas/tlc/1.0.9/defs/guards.json +24 -0
- data/schemas/tlc/1.0.9/rsmp.json +74 -0
- data/schemas/tlc/1.0.9/statuses/S0001.json +91 -0
- data/schemas/tlc/1.0.9/statuses/S0002.json +36 -0
- data/schemas/tlc/1.0.9/statuses/S0003.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0004.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0005.json +36 -0
- data/schemas/tlc/1.0.9/statuses/S0006.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0007.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0008.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0009.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0010.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0011.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0012.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0013.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0014.json +36 -0
- data/schemas/tlc/1.0.9/statuses/S0015.json +36 -0
- data/schemas/tlc/1.0.9/statuses/S0016.json +36 -0
- data/schemas/tlc/1.0.9/statuses/S0017.json +36 -0
- data/schemas/tlc/1.0.9/statuses/S0018.json +36 -0
- data/schemas/tlc/1.0.9/statuses/S0019.json +36 -0
- data/schemas/tlc/1.0.9/statuses/S0020.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0021.json +37 -0
- data/schemas/tlc/1.0.9/statuses/S0025.json +181 -0
- data/schemas/tlc/1.0.9/statuses/S0091.json +57 -0
- data/schemas/tlc/1.0.9/statuses/S0092.json +57 -0
- data/schemas/tlc/1.0.9/statuses/S0095.json +36 -0
- data/schemas/tlc/1.0.9/statuses/S0096.json +126 -0
- data/schemas/tlc/1.0.9/statuses/S0201.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0202.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0203.json +54 -0
- data/schemas/tlc/1.0.9/statuses/S0204.json +198 -0
- data/schemas/tlc/1.0.9/statuses/statuses.json +483 -0
- data/schemas/tlc/1.0.9/sxl.yaml +1010 -0
- data/schemas/tlc/1.1.0/alarms/A0001.json +4 -0
- data/schemas/tlc/1.1.0/alarms/A0002.json +4 -0
- data/schemas/tlc/1.1.0/alarms/A0003.json +4 -0
- data/schemas/tlc/1.1.0/alarms/A0004.json +4 -0
- data/schemas/tlc/1.1.0/alarms/A0005.json +4 -0
- data/schemas/tlc/1.1.0/alarms/A0006.json +4 -0
- data/schemas/tlc/1.1.0/alarms/A0007.json +34 -0
- data/schemas/tlc/1.1.0/alarms/A0008.json +30 -0
- data/schemas/tlc/1.1.0/alarms/A0009.json +4 -0
- data/schemas/tlc/1.1.0/alarms/A0010.json +4 -0
- data/schemas/tlc/1.1.0/alarms/A0101.json +4 -0
- data/schemas/tlc/1.1.0/alarms/A0201.json +35 -0
- data/schemas/tlc/1.1.0/alarms/A0202.json +35 -0
- data/schemas/tlc/1.1.0/alarms/A0301.json +92 -0
- data/schemas/tlc/1.1.0/alarms/A0302.json +115 -0
- data/schemas/tlc/1.1.0/alarms/A0303.json +92 -0
- data/schemas/tlc/1.1.0/alarms/A0304.json +115 -0
- data/schemas/tlc/1.1.0/alarms/alarms.json +287 -0
- data/schemas/tlc/1.1.0/commands/M0001.json +92 -0
- data/schemas/tlc/1.1.0/commands/M0002.json +69 -0
- data/schemas/tlc/1.1.0/commands/M0003.json +69 -0
- data/schemas/tlc/1.1.0/commands/M0004.json +51 -0
- data/schemas/tlc/1.1.0/commands/M0005.json +69 -0
- data/schemas/tlc/1.1.0/commands/M0006.json +69 -0
- data/schemas/tlc/1.1.0/commands/M0007.json +51 -0
- data/schemas/tlc/1.1.0/commands/M0008.json +69 -0
- data/schemas/tlc/1.1.0/commands/M0010.json +51 -0
- data/schemas/tlc/1.1.0/commands/M0011.json +51 -0
- data/schemas/tlc/1.1.0/commands/M0012.json +51 -0
- data/schemas/tlc/1.1.0/commands/M0013.json +51 -0
- data/schemas/tlc/1.1.0/commands/M0014.json +69 -0
- data/schemas/tlc/1.1.0/commands/M0015.json +69 -0
- data/schemas/tlc/1.1.0/commands/M0016.json +51 -0
- data/schemas/tlc/1.1.0/commands/M0017.json +51 -0
- data/schemas/tlc/1.1.0/commands/M0018.json +69 -0
- data/schemas/tlc/1.1.0/commands/M0019.json +87 -0
- data/schemas/tlc/1.1.0/commands/M0020.json +87 -0
- data/schemas/tlc/1.1.0/commands/M0021.json +51 -0
- data/schemas/tlc/1.1.0/commands/M0022.json +249 -0
- data/schemas/tlc/1.1.0/commands/M0023.json +51 -0
- data/schemas/tlc/1.1.0/commands/M0103.json +72 -0
- data/schemas/tlc/1.1.0/commands/M0104.json +141 -0
- data/schemas/tlc/1.1.0/commands/command_requests.json +8 -0
- data/schemas/tlc/1.1.0/commands/command_responses.json +8 -0
- data/schemas/tlc/1.1.0/commands/commands.json +399 -0
- data/schemas/tlc/1.1.0/defs/definitions.json +67 -0
- data/schemas/tlc/1.1.0/defs/guards.json +24 -0
- data/schemas/tlc/1.1.0/rsmp.json +74 -0
- data/schemas/tlc/1.1.0/statuses/S0001.json +91 -0
- data/schemas/tlc/1.1.0/statuses/S0002.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0003.json +54 -0
- data/schemas/tlc/1.1.0/statuses/S0004.json +54 -0
- data/schemas/tlc/1.1.0/statuses/S0005.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0006.json +54 -0
- data/schemas/tlc/1.1.0/statuses/S0007.json +73 -0
- data/schemas/tlc/1.1.0/statuses/S0008.json +73 -0
- data/schemas/tlc/1.1.0/statuses/S0009.json +73 -0
- data/schemas/tlc/1.1.0/statuses/S0010.json +73 -0
- data/schemas/tlc/1.1.0/statuses/S0011.json +73 -0
- data/schemas/tlc/1.1.0/statuses/S0012.json +73 -0
- data/schemas/tlc/1.1.0/statuses/S0013.json +54 -0
- data/schemas/tlc/1.1.0/statuses/S0014.json +62 -0
- data/schemas/tlc/1.1.0/statuses/S0015.json +62 -0
- data/schemas/tlc/1.1.0/statuses/S0016.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0017.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0018.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0019.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0020.json +54 -0
- data/schemas/tlc/1.1.0/statuses/S0021.json +37 -0
- data/schemas/tlc/1.1.0/statuses/S0022.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0023.json +37 -0
- data/schemas/tlc/1.1.0/statuses/S0024.json +37 -0
- data/schemas/tlc/1.1.0/statuses/S0025.json +162 -0
- data/schemas/tlc/1.1.0/statuses/S0026.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0027.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0028.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0029.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0030.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0031.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0032.json +73 -0
- data/schemas/tlc/1.1.0/statuses/S0033.json +77 -0
- data/schemas/tlc/1.1.0/statuses/S0034.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0091.json +40 -0
- data/schemas/tlc/1.1.0/statuses/S0092.json +40 -0
- data/schemas/tlc/1.1.0/statuses/S0095.json +36 -0
- data/schemas/tlc/1.1.0/statuses/S0096.json +126 -0
- data/schemas/tlc/1.1.0/statuses/S0097.json +54 -0
- data/schemas/tlc/1.1.0/statuses/S0098.json +72 -0
- data/schemas/tlc/1.1.0/statuses/S0201.json +54 -0
- data/schemas/tlc/1.1.0/statuses/S0202.json +54 -0
- data/schemas/tlc/1.1.0/statuses/S0203.json +54 -0
- data/schemas/tlc/1.1.0/statuses/S0204.json +198 -0
- data/schemas/tlc/1.1.0/statuses/S0205.json +54 -0
- data/schemas/tlc/1.1.0/statuses/S0206.json +54 -0
- data/schemas/tlc/1.1.0/statuses/S0207.json +54 -0
- data/schemas/tlc/1.1.0/statuses/S0208.json +198 -0
- data/schemas/tlc/1.1.0/statuses/statuses.json +787 -0
- data/schemas/tlc/1.1.0/sxl.yaml +2106 -0
- data/schemas/tlc/1.2.0/alarms/A0001.json +4 -0
- data/schemas/tlc/1.2.0/alarms/A0002.json +4 -0
- data/schemas/tlc/1.2.0/alarms/A0003.json +4 -0
- data/schemas/tlc/1.2.0/alarms/A0004.json +4 -0
- data/schemas/tlc/1.2.0/alarms/A0005.json +4 -0
- data/schemas/tlc/1.2.0/alarms/A0006.json +4 -0
- data/schemas/tlc/1.2.0/alarms/A0007.json +34 -0
- data/schemas/tlc/1.2.0/alarms/A0008.json +30 -0
- data/schemas/tlc/1.2.0/alarms/A0009.json +4 -0
- data/schemas/tlc/1.2.0/alarms/A0010.json +4 -0
- data/schemas/tlc/1.2.0/alarms/A0101.json +4 -0
- data/schemas/tlc/1.2.0/alarms/A0201.json +35 -0
- data/schemas/tlc/1.2.0/alarms/A0202.json +35 -0
- data/schemas/tlc/1.2.0/alarms/A0301.json +92 -0
- data/schemas/tlc/1.2.0/alarms/A0302.json +115 -0
- data/schemas/tlc/1.2.0/alarms/A0303.json +92 -0
- data/schemas/tlc/1.2.0/alarms/A0304.json +115 -0
- data/schemas/tlc/1.2.0/alarms/alarms.json +287 -0
- data/schemas/tlc/1.2.0/commands/M0001.json +92 -0
- data/schemas/tlc/1.2.0/commands/M0002.json +69 -0
- data/schemas/tlc/1.2.0/commands/M0003.json +69 -0
- data/schemas/tlc/1.2.0/commands/M0004.json +51 -0
- data/schemas/tlc/1.2.0/commands/M0005.json +69 -0
- data/schemas/tlc/1.2.0/commands/M0006.json +69 -0
- data/schemas/tlc/1.2.0/commands/M0007.json +51 -0
- data/schemas/tlc/1.2.0/commands/M0008.json +69 -0
- data/schemas/tlc/1.2.0/commands/M0010.json +51 -0
- data/schemas/tlc/1.2.0/commands/M0011.json +51 -0
- data/schemas/tlc/1.2.0/commands/M0012.json +51 -0
- data/schemas/tlc/1.2.0/commands/M0013.json +51 -0
- data/schemas/tlc/1.2.0/commands/M0014.json +69 -0
- data/schemas/tlc/1.2.0/commands/M0015.json +69 -0
- data/schemas/tlc/1.2.0/commands/M0016.json +51 -0
- data/schemas/tlc/1.2.0/commands/M0017.json +51 -0
- data/schemas/tlc/1.2.0/commands/M0018.json +69 -0
- data/schemas/tlc/1.2.0/commands/M0019.json +87 -0
- data/schemas/tlc/1.2.0/commands/M0020.json +87 -0
- data/schemas/tlc/1.2.0/commands/M0021.json +51 -0
- data/schemas/tlc/1.2.0/commands/M0022.json +249 -0
- data/schemas/tlc/1.2.0/commands/M0023.json +51 -0
- data/schemas/tlc/1.2.0/commands/M0103.json +72 -0
- data/schemas/tlc/1.2.0/commands/M0104.json +141 -0
- data/schemas/tlc/1.2.0/commands/command_requests.json +8 -0
- data/schemas/tlc/1.2.0/commands/command_responses.json +8 -0
- data/schemas/tlc/1.2.0/commands/commands.json +399 -0
- data/schemas/tlc/1.2.0/defs/definitions.json +67 -0
- data/schemas/tlc/1.2.0/defs/guards.json +24 -0
- data/schemas/tlc/1.2.0/rsmp.json +74 -0
- data/schemas/tlc/1.2.0/statuses/S0001.json +91 -0
- data/schemas/tlc/1.2.0/statuses/S0002.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0003.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0004.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0005.json +72 -0
- data/schemas/tlc/1.2.0/statuses/S0006.json +54 -0
- data/schemas/tlc/1.2.0/statuses/S0007.json +73 -0
- data/schemas/tlc/1.2.0/statuses/S0008.json +73 -0
- data/schemas/tlc/1.2.0/statuses/S0009.json +73 -0
- data/schemas/tlc/1.2.0/statuses/S0010.json +73 -0
- data/schemas/tlc/1.2.0/statuses/S0011.json +73 -0
- data/schemas/tlc/1.2.0/statuses/S0012.json +73 -0
- data/schemas/tlc/1.2.0/statuses/S0013.json +54 -0
- data/schemas/tlc/1.2.0/statuses/S0014.json +62 -0
- data/schemas/tlc/1.2.0/statuses/S0015.json +62 -0
- data/schemas/tlc/1.2.0/statuses/S0016.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0017.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0018.json +61 -0
- data/schemas/tlc/1.2.0/statuses/S0019.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0020.json +54 -0
- data/schemas/tlc/1.2.0/statuses/S0021.json +37 -0
- data/schemas/tlc/1.2.0/statuses/S0022.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0023.json +37 -0
- data/schemas/tlc/1.2.0/statuses/S0024.json +37 -0
- data/schemas/tlc/1.2.0/statuses/S0025.json +162 -0
- data/schemas/tlc/1.2.0/statuses/S0026.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0027.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0028.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0029.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0030.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0031.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0032.json +73 -0
- data/schemas/tlc/1.2.0/statuses/S0033.json +77 -0
- data/schemas/tlc/1.2.0/statuses/S0034.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0035.json +49 -0
- data/schemas/tlc/1.2.0/statuses/S0091.json +40 -0
- data/schemas/tlc/1.2.0/statuses/S0092.json +40 -0
- data/schemas/tlc/1.2.0/statuses/S0095.json +36 -0
- data/schemas/tlc/1.2.0/statuses/S0096.json +126 -0
- data/schemas/tlc/1.2.0/statuses/S0097.json +54 -0
- data/schemas/tlc/1.2.0/statuses/S0098.json +72 -0
- data/schemas/tlc/1.2.0/statuses/S0201.json +54 -0
- data/schemas/tlc/1.2.0/statuses/S0202.json +54 -0
- data/schemas/tlc/1.2.0/statuses/S0203.json +54 -0
- data/schemas/tlc/1.2.0/statuses/S0204.json +198 -0
- data/schemas/tlc/1.2.0/statuses/S0205.json +54 -0
- data/schemas/tlc/1.2.0/statuses/S0206.json +54 -0
- data/schemas/tlc/1.2.0/statuses/S0207.json +54 -0
- data/schemas/tlc/1.2.0/statuses/S0208.json +198 -0
- data/schemas/tlc/1.2.0/statuses/statuses.json +787 -0
- data/schemas/tlc/1.2.0/sxl.yaml +2082 -0
- data/schemas/tlc/1.2.1/alarms/A0001.json +4 -0
- data/schemas/tlc/1.2.1/alarms/A0002.json +4 -0
- data/schemas/tlc/1.2.1/alarms/A0003.json +4 -0
- data/schemas/tlc/1.2.1/alarms/A0004.json +4 -0
- data/schemas/tlc/1.2.1/alarms/A0005.json +4 -0
- data/schemas/tlc/1.2.1/alarms/A0006.json +4 -0
- data/schemas/tlc/1.2.1/alarms/A0007.json +34 -0
- data/schemas/tlc/1.2.1/alarms/A0008.json +30 -0
- data/schemas/tlc/1.2.1/alarms/A0009.json +4 -0
- data/schemas/tlc/1.2.1/alarms/A0010.json +4 -0
- data/schemas/tlc/1.2.1/alarms/A0101.json +4 -0
- data/schemas/tlc/1.2.1/alarms/A0201.json +35 -0
- data/schemas/tlc/1.2.1/alarms/A0202.json +35 -0
- data/schemas/tlc/1.2.1/alarms/A0301.json +92 -0
- data/schemas/tlc/1.2.1/alarms/A0302.json +115 -0
- data/schemas/tlc/1.2.1/alarms/A0303.json +92 -0
- data/schemas/tlc/1.2.1/alarms/A0304.json +115 -0
- data/schemas/tlc/1.2.1/alarms/alarms.json +287 -0
- data/schemas/tlc/1.2.1/commands/M0001.json +92 -0
- data/schemas/tlc/1.2.1/commands/M0002.json +69 -0
- data/schemas/tlc/1.2.1/commands/M0003.json +69 -0
- data/schemas/tlc/1.2.1/commands/M0004.json +51 -0
- data/schemas/tlc/1.2.1/commands/M0005.json +69 -0
- data/schemas/tlc/1.2.1/commands/M0006.json +69 -0
- data/schemas/tlc/1.2.1/commands/M0007.json +51 -0
- data/schemas/tlc/1.2.1/commands/M0008.json +69 -0
- data/schemas/tlc/1.2.1/commands/M0010.json +51 -0
- data/schemas/tlc/1.2.1/commands/M0011.json +51 -0
- data/schemas/tlc/1.2.1/commands/M0012.json +51 -0
- data/schemas/tlc/1.2.1/commands/M0013.json +51 -0
- data/schemas/tlc/1.2.1/commands/M0014.json +69 -0
- data/schemas/tlc/1.2.1/commands/M0015.json +69 -0
- data/schemas/tlc/1.2.1/commands/M0016.json +51 -0
- data/schemas/tlc/1.2.1/commands/M0017.json +51 -0
- data/schemas/tlc/1.2.1/commands/M0018.json +69 -0
- data/schemas/tlc/1.2.1/commands/M0019.json +87 -0
- data/schemas/tlc/1.2.1/commands/M0020.json +87 -0
- data/schemas/tlc/1.2.1/commands/M0021.json +51 -0
- data/schemas/tlc/1.2.1/commands/M0022.json +249 -0
- data/schemas/tlc/1.2.1/commands/M0023.json +51 -0
- data/schemas/tlc/1.2.1/commands/M0103.json +72 -0
- data/schemas/tlc/1.2.1/commands/M0104.json +141 -0
- data/schemas/tlc/1.2.1/commands/command_requests.json +8 -0
- data/schemas/tlc/1.2.1/commands/command_responses.json +8 -0
- data/schemas/tlc/1.2.1/commands/commands.json +399 -0
- data/schemas/tlc/1.2.1/defs/definitions.json +67 -0
- data/schemas/tlc/1.2.1/defs/guards.json +24 -0
- data/schemas/tlc/1.2.1/rsmp.json +74 -0
- data/schemas/tlc/1.2.1/statuses/S0001.json +91 -0
- data/schemas/tlc/1.2.1/statuses/S0002.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0003.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0004.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0005.json +72 -0
- data/schemas/tlc/1.2.1/statuses/S0006.json +54 -0
- data/schemas/tlc/1.2.1/statuses/S0007.json +73 -0
- data/schemas/tlc/1.2.1/statuses/S0008.json +73 -0
- data/schemas/tlc/1.2.1/statuses/S0009.json +73 -0
- data/schemas/tlc/1.2.1/statuses/S0010.json +73 -0
- data/schemas/tlc/1.2.1/statuses/S0011.json +73 -0
- data/schemas/tlc/1.2.1/statuses/S0012.json +73 -0
- data/schemas/tlc/1.2.1/statuses/S0013.json +54 -0
- data/schemas/tlc/1.2.1/statuses/S0014.json +62 -0
- data/schemas/tlc/1.2.1/statuses/S0015.json +62 -0
- data/schemas/tlc/1.2.1/statuses/S0016.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0017.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0018.json +61 -0
- data/schemas/tlc/1.2.1/statuses/S0019.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0020.json +54 -0
- data/schemas/tlc/1.2.1/statuses/S0021.json +37 -0
- data/schemas/tlc/1.2.1/statuses/S0022.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0023.json +37 -0
- data/schemas/tlc/1.2.1/statuses/S0024.json +37 -0
- data/schemas/tlc/1.2.1/statuses/S0025.json +162 -0
- data/schemas/tlc/1.2.1/statuses/S0026.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0027.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0028.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0029.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0030.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0031.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0032.json +73 -0
- data/schemas/tlc/1.2.1/statuses/S0033.json +77 -0
- data/schemas/tlc/1.2.1/statuses/S0034.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0035.json +49 -0
- data/schemas/tlc/1.2.1/statuses/S0091.json +40 -0
- data/schemas/tlc/1.2.1/statuses/S0092.json +40 -0
- data/schemas/tlc/1.2.1/statuses/S0095.json +36 -0
- data/schemas/tlc/1.2.1/statuses/S0096.json +126 -0
- data/schemas/tlc/1.2.1/statuses/S0097.json +54 -0
- data/schemas/tlc/1.2.1/statuses/S0098.json +72 -0
- data/schemas/tlc/1.2.1/statuses/S0201.json +54 -0
- data/schemas/tlc/1.2.1/statuses/S0202.json +54 -0
- data/schemas/tlc/1.2.1/statuses/S0203.json +54 -0
- data/schemas/tlc/1.2.1/statuses/S0204.json +198 -0
- data/schemas/tlc/1.2.1/statuses/S0205.json +54 -0
- data/schemas/tlc/1.2.1/statuses/S0206.json +54 -0
- data/schemas/tlc/1.2.1/statuses/S0207.json +54 -0
- data/schemas/tlc/1.2.1/statuses/S0208.json +198 -0
- data/schemas/tlc/1.2.1/statuses/statuses.json +787 -0
- data/schemas/tlc/1.2.1/sxl.yaml +2109 -0
- data/schemas/tlc/defs/guards.json +24 -0
- metadata +1000 -4
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rsmp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.43.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emil Tin
|
|
@@ -65,6 +65,20 @@ dependencies:
|
|
|
65
65
|
- - "~>"
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
67
|
version: '0.10'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: json_schemer
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - "~>"
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '2.5'
|
|
75
|
+
type: :runtime
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - "~>"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '2.5'
|
|
68
82
|
- !ruby/object:Gem::Dependency
|
|
69
83
|
name: logger
|
|
70
84
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -94,19 +108,19 @@ dependencies:
|
|
|
94
108
|
- !ruby/object:Gem::Version
|
|
95
109
|
version: '0.6'
|
|
96
110
|
- !ruby/object:Gem::Dependency
|
|
97
|
-
name:
|
|
111
|
+
name: thor
|
|
98
112
|
requirement: !ruby/object:Gem::Requirement
|
|
99
113
|
requirements:
|
|
100
114
|
- - "~>"
|
|
101
115
|
- !ruby/object:Gem::Version
|
|
102
|
-
version: '
|
|
116
|
+
version: '1.5'
|
|
103
117
|
type: :runtime
|
|
104
118
|
prerelease: false
|
|
105
119
|
version_requirements: !ruby/object:Gem::Requirement
|
|
106
120
|
requirements:
|
|
107
121
|
- - "~>"
|
|
108
122
|
- !ruby/object:Gem::Version
|
|
109
|
-
version: '
|
|
123
|
+
version: '1.5'
|
|
110
124
|
description: Easy RSMP site and supervisor communication.
|
|
111
125
|
email:
|
|
112
126
|
- zf0f@kk.dk
|
|
@@ -169,6 +183,10 @@ files:
|
|
|
169
183
|
- lib/rsmp/component/component_base.rb
|
|
170
184
|
- lib/rsmp/component/component_proxy.rb
|
|
171
185
|
- lib/rsmp/component/components.rb
|
|
186
|
+
- lib/rsmp/convert/export/json_schema.rb
|
|
187
|
+
- lib/rsmp/convert/export/json_schema/items.rb
|
|
188
|
+
- lib/rsmp/convert/export/json_schema/outputs.rb
|
|
189
|
+
- lib/rsmp/convert/export/json_schema/values.rb
|
|
172
190
|
- lib/rsmp/convert/import/yaml.rb
|
|
173
191
|
- lib/rsmp/helpers/clock.rb
|
|
174
192
|
- lib/rsmp/helpers/deep_merge.rb
|
|
@@ -213,6 +231,8 @@ files:
|
|
|
213
231
|
- lib/rsmp/proxy/supervisor/modules/commands.rb
|
|
214
232
|
- lib/rsmp/proxy/supervisor/modules/status.rb
|
|
215
233
|
- lib/rsmp/proxy/supervisor/supervisor_proxy.rb
|
|
234
|
+
- lib/rsmp/schema.rb
|
|
235
|
+
- lib/rsmp/schema_error.rb
|
|
216
236
|
- lib/rsmp/status_list.rb
|
|
217
237
|
- lib/rsmp/tlc/detector_logic.rb
|
|
218
238
|
- lib/rsmp/tlc/input_states.rb
|
|
@@ -242,6 +262,982 @@ files:
|
|
|
242
262
|
- lib/rsmp/tlc/traffic_controller_site.rb
|
|
243
263
|
- lib/rsmp/version.rb
|
|
244
264
|
- rsmp.gemspec
|
|
265
|
+
- schemas/core/3.1.2/aggregated_status.json
|
|
266
|
+
- schemas/core/3.1.2/alarm.json
|
|
267
|
+
- schemas/core/3.1.2/alarm_acknowledge.json
|
|
268
|
+
- schemas/core/3.1.2/alarm_issue.json
|
|
269
|
+
- schemas/core/3.1.2/alarm_suspend_resume.json
|
|
270
|
+
- schemas/core/3.1.2/alarm_suspended_resumed.json
|
|
271
|
+
- schemas/core/3.1.2/command_request.json
|
|
272
|
+
- schemas/core/3.1.2/command_response.json
|
|
273
|
+
- schemas/core/3.1.2/core.json
|
|
274
|
+
- schemas/core/3.1.2/definitions.json
|
|
275
|
+
- schemas/core/3.1.2/message_ack.json
|
|
276
|
+
- schemas/core/3.1.2/message_not_ack.json
|
|
277
|
+
- schemas/core/3.1.2/rsmp.json
|
|
278
|
+
- schemas/core/3.1.2/status.json
|
|
279
|
+
- schemas/core/3.1.2/status_request.json
|
|
280
|
+
- schemas/core/3.1.2/status_response.json
|
|
281
|
+
- schemas/core/3.1.2/status_subscribe.json
|
|
282
|
+
- schemas/core/3.1.2/status_unsubscribe.json
|
|
283
|
+
- schemas/core/3.1.2/status_update.json
|
|
284
|
+
- schemas/core/3.1.2/version.json
|
|
285
|
+
- schemas/core/3.1.2/watchdog.json
|
|
286
|
+
- schemas/core/3.1.3/aggregated_status.json
|
|
287
|
+
- schemas/core/3.1.3/alarm.json
|
|
288
|
+
- schemas/core/3.1.3/alarm_acknowledge.json
|
|
289
|
+
- schemas/core/3.1.3/alarm_issue.json
|
|
290
|
+
- schemas/core/3.1.3/alarm_suspend_resume.json
|
|
291
|
+
- schemas/core/3.1.3/alarm_suspended_resumed.json
|
|
292
|
+
- schemas/core/3.1.3/command_request.json
|
|
293
|
+
- schemas/core/3.1.3/command_response.json
|
|
294
|
+
- schemas/core/3.1.3/core.json
|
|
295
|
+
- schemas/core/3.1.3/definitions.json
|
|
296
|
+
- schemas/core/3.1.3/message_ack.json
|
|
297
|
+
- schemas/core/3.1.3/message_not_ack.json
|
|
298
|
+
- schemas/core/3.1.3/rsmp.json
|
|
299
|
+
- schemas/core/3.1.3/status.json
|
|
300
|
+
- schemas/core/3.1.3/status_request.json
|
|
301
|
+
- schemas/core/3.1.3/status_response.json
|
|
302
|
+
- schemas/core/3.1.3/status_subscribe.json
|
|
303
|
+
- schemas/core/3.1.3/status_unsubscribe.json
|
|
304
|
+
- schemas/core/3.1.3/status_update.json
|
|
305
|
+
- schemas/core/3.1.3/version.json
|
|
306
|
+
- schemas/core/3.1.3/watchdog.json
|
|
307
|
+
- schemas/core/3.1.4/aggregated_status.json
|
|
308
|
+
- schemas/core/3.1.4/alarm.json
|
|
309
|
+
- schemas/core/3.1.4/alarm_acknowledge.json
|
|
310
|
+
- schemas/core/3.1.4/alarm_issue.json
|
|
311
|
+
- schemas/core/3.1.4/alarm_suspend_resume.json
|
|
312
|
+
- schemas/core/3.1.4/alarm_suspended_resumed.json
|
|
313
|
+
- schemas/core/3.1.4/command_request.json
|
|
314
|
+
- schemas/core/3.1.4/command_response.json
|
|
315
|
+
- schemas/core/3.1.4/core.json
|
|
316
|
+
- schemas/core/3.1.4/definitions.json
|
|
317
|
+
- schemas/core/3.1.4/message_ack.json
|
|
318
|
+
- schemas/core/3.1.4/message_not_ack.json
|
|
319
|
+
- schemas/core/3.1.4/rsmp.json
|
|
320
|
+
- schemas/core/3.1.4/status.json
|
|
321
|
+
- schemas/core/3.1.4/status_request.json
|
|
322
|
+
- schemas/core/3.1.4/status_response.json
|
|
323
|
+
- schemas/core/3.1.4/status_subscribe.json
|
|
324
|
+
- schemas/core/3.1.4/status_unsubscribe.json
|
|
325
|
+
- schemas/core/3.1.4/status_update.json
|
|
326
|
+
- schemas/core/3.1.4/version.json
|
|
327
|
+
- schemas/core/3.1.4/watchdog.json
|
|
328
|
+
- schemas/core/3.1.5/aggregated_status.json
|
|
329
|
+
- schemas/core/3.1.5/aggregated_status_request.json
|
|
330
|
+
- schemas/core/3.1.5/alarm.json
|
|
331
|
+
- schemas/core/3.1.5/alarm_acknowledge.json
|
|
332
|
+
- schemas/core/3.1.5/alarm_issue.json
|
|
333
|
+
- schemas/core/3.1.5/alarm_request.json
|
|
334
|
+
- schemas/core/3.1.5/alarm_suspend_resume.json
|
|
335
|
+
- schemas/core/3.1.5/alarm_suspended_resumed.json
|
|
336
|
+
- schemas/core/3.1.5/command_request.json
|
|
337
|
+
- schemas/core/3.1.5/command_response.json
|
|
338
|
+
- schemas/core/3.1.5/core.json
|
|
339
|
+
- schemas/core/3.1.5/definitions.json
|
|
340
|
+
- schemas/core/3.1.5/message_ack.json
|
|
341
|
+
- schemas/core/3.1.5/message_not_ack.json
|
|
342
|
+
- schemas/core/3.1.5/rsmp.json
|
|
343
|
+
- schemas/core/3.1.5/status.json
|
|
344
|
+
- schemas/core/3.1.5/status_request.json
|
|
345
|
+
- schemas/core/3.1.5/status_response.json
|
|
346
|
+
- schemas/core/3.1.5/status_subscribe.json
|
|
347
|
+
- schemas/core/3.1.5/status_unsubscribe.json
|
|
348
|
+
- schemas/core/3.1.5/status_update.json
|
|
349
|
+
- schemas/core/3.1.5/version.json
|
|
350
|
+
- schemas/core/3.1.5/watchdog.json
|
|
351
|
+
- schemas/core/3.2.0/aggregated_status.json
|
|
352
|
+
- schemas/core/3.2.0/aggregated_status_request.json
|
|
353
|
+
- schemas/core/3.2.0/alarm.json
|
|
354
|
+
- schemas/core/3.2.0/alarm_acknowledge.json
|
|
355
|
+
- schemas/core/3.2.0/alarm_issue.json
|
|
356
|
+
- schemas/core/3.2.0/alarm_request.json
|
|
357
|
+
- schemas/core/3.2.0/alarm_suspend_resume.json
|
|
358
|
+
- schemas/core/3.2.0/alarm_suspended_resumed.json
|
|
359
|
+
- schemas/core/3.2.0/command_request.json
|
|
360
|
+
- schemas/core/3.2.0/command_response.json
|
|
361
|
+
- schemas/core/3.2.0/core.json
|
|
362
|
+
- schemas/core/3.2.0/definitions.json
|
|
363
|
+
- schemas/core/3.2.0/message_ack.json
|
|
364
|
+
- schemas/core/3.2.0/message_not_ack.json
|
|
365
|
+
- schemas/core/3.2.0/rsmp.json
|
|
366
|
+
- schemas/core/3.2.0/status.json
|
|
367
|
+
- schemas/core/3.2.0/status_request.json
|
|
368
|
+
- schemas/core/3.2.0/status_response.json
|
|
369
|
+
- schemas/core/3.2.0/status_subscribe.json
|
|
370
|
+
- schemas/core/3.2.0/status_unsubscribe.json
|
|
371
|
+
- schemas/core/3.2.0/status_update.json
|
|
372
|
+
- schemas/core/3.2.0/version.json
|
|
373
|
+
- schemas/core/3.2.0/watchdog.json
|
|
374
|
+
- schemas/core/3.2.1/aggregated_status.json
|
|
375
|
+
- schemas/core/3.2.1/aggregated_status_request.json
|
|
376
|
+
- schemas/core/3.2.1/alarm.json
|
|
377
|
+
- schemas/core/3.2.1/alarm_acknowledge.json
|
|
378
|
+
- schemas/core/3.2.1/alarm_issue.json
|
|
379
|
+
- schemas/core/3.2.1/alarm_request.json
|
|
380
|
+
- schemas/core/3.2.1/alarm_suspend_resume.json
|
|
381
|
+
- schemas/core/3.2.1/alarm_suspended_resumed.json
|
|
382
|
+
- schemas/core/3.2.1/command_request.json
|
|
383
|
+
- schemas/core/3.2.1/command_response.json
|
|
384
|
+
- schemas/core/3.2.1/core.json
|
|
385
|
+
- schemas/core/3.2.1/definitions.json
|
|
386
|
+
- schemas/core/3.2.1/message_ack.json
|
|
387
|
+
- schemas/core/3.2.1/message_not_ack.json
|
|
388
|
+
- schemas/core/3.2.1/rsmp.json
|
|
389
|
+
- schemas/core/3.2.1/status.json
|
|
390
|
+
- schemas/core/3.2.1/status_request.json
|
|
391
|
+
- schemas/core/3.2.1/status_response.json
|
|
392
|
+
- schemas/core/3.2.1/status_subscribe.json
|
|
393
|
+
- schemas/core/3.2.1/status_unsubscribe.json
|
|
394
|
+
- schemas/core/3.2.1/status_update.json
|
|
395
|
+
- schemas/core/3.2.1/version.json
|
|
396
|
+
- schemas/core/3.2.1/watchdog.json
|
|
397
|
+
- schemas/core/3.2.2/aggregated_status.json
|
|
398
|
+
- schemas/core/3.2.2/aggregated_status_request.json
|
|
399
|
+
- schemas/core/3.2.2/alarm.json
|
|
400
|
+
- schemas/core/3.2.2/alarm_acknowledge.json
|
|
401
|
+
- schemas/core/3.2.2/alarm_issue.json
|
|
402
|
+
- schemas/core/3.2.2/alarm_request.json
|
|
403
|
+
- schemas/core/3.2.2/alarm_suspend_resume.json
|
|
404
|
+
- schemas/core/3.2.2/alarm_suspended_resumed.json
|
|
405
|
+
- schemas/core/3.2.2/command_request.json
|
|
406
|
+
- schemas/core/3.2.2/command_response.json
|
|
407
|
+
- schemas/core/3.2.2/core.json
|
|
408
|
+
- schemas/core/3.2.2/definitions.json
|
|
409
|
+
- schemas/core/3.2.2/message_ack.json
|
|
410
|
+
- schemas/core/3.2.2/message_not_ack.json
|
|
411
|
+
- schemas/core/3.2.2/rsmp.json
|
|
412
|
+
- schemas/core/3.2.2/status.json
|
|
413
|
+
- schemas/core/3.2.2/status_request.json
|
|
414
|
+
- schemas/core/3.2.2/status_response.json
|
|
415
|
+
- schemas/core/3.2.2/status_subscribe.json
|
|
416
|
+
- schemas/core/3.2.2/status_unsubscribe.json
|
|
417
|
+
- schemas/core/3.2.2/status_update.json
|
|
418
|
+
- schemas/core/3.2.2/version.json
|
|
419
|
+
- schemas/core/3.2.2/watchdog.json
|
|
420
|
+
- schemas/tlc/1.0.10/alarms/A0001.json
|
|
421
|
+
- schemas/tlc/1.0.10/alarms/A0002.json
|
|
422
|
+
- schemas/tlc/1.0.10/alarms/A0003.json
|
|
423
|
+
- schemas/tlc/1.0.10/alarms/A0004.json
|
|
424
|
+
- schemas/tlc/1.0.10/alarms/A0005.json
|
|
425
|
+
- schemas/tlc/1.0.10/alarms/A0006.json
|
|
426
|
+
- schemas/tlc/1.0.10/alarms/A0007.json
|
|
427
|
+
- schemas/tlc/1.0.10/alarms/A0008.json
|
|
428
|
+
- schemas/tlc/1.0.10/alarms/A0009.json
|
|
429
|
+
- schemas/tlc/1.0.10/alarms/A0101.json
|
|
430
|
+
- schemas/tlc/1.0.10/alarms/A0201.json
|
|
431
|
+
- schemas/tlc/1.0.10/alarms/A0202.json
|
|
432
|
+
- schemas/tlc/1.0.10/alarms/A0301.json
|
|
433
|
+
- schemas/tlc/1.0.10/alarms/A0302.json
|
|
434
|
+
- schemas/tlc/1.0.10/alarms/alarms.json
|
|
435
|
+
- schemas/tlc/1.0.10/commands/M0001.json
|
|
436
|
+
- schemas/tlc/1.0.10/commands/M0002.json
|
|
437
|
+
- schemas/tlc/1.0.10/commands/M0003.json
|
|
438
|
+
- schemas/tlc/1.0.10/commands/M0004.json
|
|
439
|
+
- schemas/tlc/1.0.10/commands/M0005.json
|
|
440
|
+
- schemas/tlc/1.0.10/commands/M0006.json
|
|
441
|
+
- schemas/tlc/1.0.10/commands/M0007.json
|
|
442
|
+
- schemas/tlc/1.0.10/commands/M0008.json
|
|
443
|
+
- schemas/tlc/1.0.10/commands/M0010.json
|
|
444
|
+
- schemas/tlc/1.0.10/commands/M0011.json
|
|
445
|
+
- schemas/tlc/1.0.10/commands/M0012.json
|
|
446
|
+
- schemas/tlc/1.0.10/commands/M0013.json
|
|
447
|
+
- schemas/tlc/1.0.10/commands/M0019.json
|
|
448
|
+
- schemas/tlc/1.0.10/commands/M0103.json
|
|
449
|
+
- schemas/tlc/1.0.10/commands/M0104.json
|
|
450
|
+
- schemas/tlc/1.0.10/commands/command_requests.json
|
|
451
|
+
- schemas/tlc/1.0.10/commands/command_responses.json
|
|
452
|
+
- schemas/tlc/1.0.10/commands/commands.json
|
|
453
|
+
- schemas/tlc/1.0.10/defs/definitions.json
|
|
454
|
+
- schemas/tlc/1.0.10/defs/guards.json
|
|
455
|
+
- schemas/tlc/1.0.10/rsmp.json
|
|
456
|
+
- schemas/tlc/1.0.10/statuses/S0001.json
|
|
457
|
+
- schemas/tlc/1.0.10/statuses/S0002.json
|
|
458
|
+
- schemas/tlc/1.0.10/statuses/S0003.json
|
|
459
|
+
- schemas/tlc/1.0.10/statuses/S0004.json
|
|
460
|
+
- schemas/tlc/1.0.10/statuses/S0005.json
|
|
461
|
+
- schemas/tlc/1.0.10/statuses/S0006.json
|
|
462
|
+
- schemas/tlc/1.0.10/statuses/S0007.json
|
|
463
|
+
- schemas/tlc/1.0.10/statuses/S0008.json
|
|
464
|
+
- schemas/tlc/1.0.10/statuses/S0009.json
|
|
465
|
+
- schemas/tlc/1.0.10/statuses/S0010.json
|
|
466
|
+
- schemas/tlc/1.0.10/statuses/S0011.json
|
|
467
|
+
- schemas/tlc/1.0.10/statuses/S0012.json
|
|
468
|
+
- schemas/tlc/1.0.10/statuses/S0013.json
|
|
469
|
+
- schemas/tlc/1.0.10/statuses/S0014.json
|
|
470
|
+
- schemas/tlc/1.0.10/statuses/S0015.json
|
|
471
|
+
- schemas/tlc/1.0.10/statuses/S0016.json
|
|
472
|
+
- schemas/tlc/1.0.10/statuses/S0017.json
|
|
473
|
+
- schemas/tlc/1.0.10/statuses/S0018.json
|
|
474
|
+
- schemas/tlc/1.0.10/statuses/S0019.json
|
|
475
|
+
- schemas/tlc/1.0.10/statuses/S0020.json
|
|
476
|
+
- schemas/tlc/1.0.10/statuses/S0021.json
|
|
477
|
+
- schemas/tlc/1.0.10/statuses/S0091.json
|
|
478
|
+
- schemas/tlc/1.0.10/statuses/S0092.json
|
|
479
|
+
- schemas/tlc/1.0.10/statuses/S0095.json
|
|
480
|
+
- schemas/tlc/1.0.10/statuses/S0096.json
|
|
481
|
+
- schemas/tlc/1.0.10/statuses/S0201.json
|
|
482
|
+
- schemas/tlc/1.0.10/statuses/S0202.json
|
|
483
|
+
- schemas/tlc/1.0.10/statuses/S0203.json
|
|
484
|
+
- schemas/tlc/1.0.10/statuses/S0204.json
|
|
485
|
+
- schemas/tlc/1.0.10/statuses/statuses.json
|
|
486
|
+
- schemas/tlc/1.0.10/sxl.yaml
|
|
487
|
+
- schemas/tlc/1.0.13/alarms/A0001.json
|
|
488
|
+
- schemas/tlc/1.0.13/alarms/A0002.json
|
|
489
|
+
- schemas/tlc/1.0.13/alarms/A0003.json
|
|
490
|
+
- schemas/tlc/1.0.13/alarms/A0004.json
|
|
491
|
+
- schemas/tlc/1.0.13/alarms/A0005.json
|
|
492
|
+
- schemas/tlc/1.0.13/alarms/A0006.json
|
|
493
|
+
- schemas/tlc/1.0.13/alarms/A0007.json
|
|
494
|
+
- schemas/tlc/1.0.13/alarms/A0008.json
|
|
495
|
+
- schemas/tlc/1.0.13/alarms/A0009.json
|
|
496
|
+
- schemas/tlc/1.0.13/alarms/A0101.json
|
|
497
|
+
- schemas/tlc/1.0.13/alarms/A0201.json
|
|
498
|
+
- schemas/tlc/1.0.13/alarms/A0202.json
|
|
499
|
+
- schemas/tlc/1.0.13/alarms/A0301.json
|
|
500
|
+
- schemas/tlc/1.0.13/alarms/A0302.json
|
|
501
|
+
- schemas/tlc/1.0.13/alarms/alarms.json
|
|
502
|
+
- schemas/tlc/1.0.13/commands/M0001.json
|
|
503
|
+
- schemas/tlc/1.0.13/commands/M0002.json
|
|
504
|
+
- schemas/tlc/1.0.13/commands/M0003.json
|
|
505
|
+
- schemas/tlc/1.0.13/commands/M0004.json
|
|
506
|
+
- schemas/tlc/1.0.13/commands/M0005.json
|
|
507
|
+
- schemas/tlc/1.0.13/commands/M0006.json
|
|
508
|
+
- schemas/tlc/1.0.13/commands/M0007.json
|
|
509
|
+
- schemas/tlc/1.0.13/commands/M0008.json
|
|
510
|
+
- schemas/tlc/1.0.13/commands/M0010.json
|
|
511
|
+
- schemas/tlc/1.0.13/commands/M0011.json
|
|
512
|
+
- schemas/tlc/1.0.13/commands/M0012.json
|
|
513
|
+
- schemas/tlc/1.0.13/commands/M0013.json
|
|
514
|
+
- schemas/tlc/1.0.13/commands/M0014.json
|
|
515
|
+
- schemas/tlc/1.0.13/commands/M0015.json
|
|
516
|
+
- schemas/tlc/1.0.13/commands/M0016.json
|
|
517
|
+
- schemas/tlc/1.0.13/commands/M0017.json
|
|
518
|
+
- schemas/tlc/1.0.13/commands/M0018.json
|
|
519
|
+
- schemas/tlc/1.0.13/commands/M0019.json
|
|
520
|
+
- schemas/tlc/1.0.13/commands/M0103.json
|
|
521
|
+
- schemas/tlc/1.0.13/commands/M0104.json
|
|
522
|
+
- schemas/tlc/1.0.13/commands/command_requests.json
|
|
523
|
+
- schemas/tlc/1.0.13/commands/command_responses.json
|
|
524
|
+
- schemas/tlc/1.0.13/commands/commands.json
|
|
525
|
+
- schemas/tlc/1.0.13/defs/definitions.json
|
|
526
|
+
- schemas/tlc/1.0.13/defs/guards.json
|
|
527
|
+
- schemas/tlc/1.0.13/rsmp.json
|
|
528
|
+
- schemas/tlc/1.0.13/statuses/S0001.json
|
|
529
|
+
- schemas/tlc/1.0.13/statuses/S0002.json
|
|
530
|
+
- schemas/tlc/1.0.13/statuses/S0003.json
|
|
531
|
+
- schemas/tlc/1.0.13/statuses/S0004.json
|
|
532
|
+
- schemas/tlc/1.0.13/statuses/S0005.json
|
|
533
|
+
- schemas/tlc/1.0.13/statuses/S0006.json
|
|
534
|
+
- schemas/tlc/1.0.13/statuses/S0007.json
|
|
535
|
+
- schemas/tlc/1.0.13/statuses/S0008.json
|
|
536
|
+
- schemas/tlc/1.0.13/statuses/S0009.json
|
|
537
|
+
- schemas/tlc/1.0.13/statuses/S0010.json
|
|
538
|
+
- schemas/tlc/1.0.13/statuses/S0011.json
|
|
539
|
+
- schemas/tlc/1.0.13/statuses/S0012.json
|
|
540
|
+
- schemas/tlc/1.0.13/statuses/S0013.json
|
|
541
|
+
- schemas/tlc/1.0.13/statuses/S0014.json
|
|
542
|
+
- schemas/tlc/1.0.13/statuses/S0015.json
|
|
543
|
+
- schemas/tlc/1.0.13/statuses/S0016.json
|
|
544
|
+
- schemas/tlc/1.0.13/statuses/S0017.json
|
|
545
|
+
- schemas/tlc/1.0.13/statuses/S0018.json
|
|
546
|
+
- schemas/tlc/1.0.13/statuses/S0019.json
|
|
547
|
+
- schemas/tlc/1.0.13/statuses/S0020.json
|
|
548
|
+
- schemas/tlc/1.0.13/statuses/S0021.json
|
|
549
|
+
- schemas/tlc/1.0.13/statuses/S0022.json
|
|
550
|
+
- schemas/tlc/1.0.13/statuses/S0023.json
|
|
551
|
+
- schemas/tlc/1.0.13/statuses/S0024.json
|
|
552
|
+
- schemas/tlc/1.0.13/statuses/S0025.json
|
|
553
|
+
- schemas/tlc/1.0.13/statuses/S0026.json
|
|
554
|
+
- schemas/tlc/1.0.13/statuses/S0027.json
|
|
555
|
+
- schemas/tlc/1.0.13/statuses/S0028.json
|
|
556
|
+
- schemas/tlc/1.0.13/statuses/S0029.json
|
|
557
|
+
- schemas/tlc/1.0.13/statuses/S0091.json
|
|
558
|
+
- schemas/tlc/1.0.13/statuses/S0092.json
|
|
559
|
+
- schemas/tlc/1.0.13/statuses/S0095.json
|
|
560
|
+
- schemas/tlc/1.0.13/statuses/S0096.json
|
|
561
|
+
- schemas/tlc/1.0.13/statuses/S0201.json
|
|
562
|
+
- schemas/tlc/1.0.13/statuses/S0202.json
|
|
563
|
+
- schemas/tlc/1.0.13/statuses/S0203.json
|
|
564
|
+
- schemas/tlc/1.0.13/statuses/S0204.json
|
|
565
|
+
- schemas/tlc/1.0.13/statuses/statuses.json
|
|
566
|
+
- schemas/tlc/1.0.13/sxl.yaml
|
|
567
|
+
- schemas/tlc/1.0.14/alarms/A0001.json
|
|
568
|
+
- schemas/tlc/1.0.14/alarms/A0002.json
|
|
569
|
+
- schemas/tlc/1.0.14/alarms/A0003.json
|
|
570
|
+
- schemas/tlc/1.0.14/alarms/A0004.json
|
|
571
|
+
- schemas/tlc/1.0.14/alarms/A0005.json
|
|
572
|
+
- schemas/tlc/1.0.14/alarms/A0006.json
|
|
573
|
+
- schemas/tlc/1.0.14/alarms/A0007.json
|
|
574
|
+
- schemas/tlc/1.0.14/alarms/A0008.json
|
|
575
|
+
- schemas/tlc/1.0.14/alarms/A0009.json
|
|
576
|
+
- schemas/tlc/1.0.14/alarms/A0101.json
|
|
577
|
+
- schemas/tlc/1.0.14/alarms/A0201.json
|
|
578
|
+
- schemas/tlc/1.0.14/alarms/A0202.json
|
|
579
|
+
- schemas/tlc/1.0.14/alarms/A0301.json
|
|
580
|
+
- schemas/tlc/1.0.14/alarms/A0302.json
|
|
581
|
+
- schemas/tlc/1.0.14/alarms/alarms.json
|
|
582
|
+
- schemas/tlc/1.0.14/commands/M0001.json
|
|
583
|
+
- schemas/tlc/1.0.14/commands/M0002.json
|
|
584
|
+
- schemas/tlc/1.0.14/commands/M0003.json
|
|
585
|
+
- schemas/tlc/1.0.14/commands/M0004.json
|
|
586
|
+
- schemas/tlc/1.0.14/commands/M0005.json
|
|
587
|
+
- schemas/tlc/1.0.14/commands/M0006.json
|
|
588
|
+
- schemas/tlc/1.0.14/commands/M0007.json
|
|
589
|
+
- schemas/tlc/1.0.14/commands/M0008.json
|
|
590
|
+
- schemas/tlc/1.0.14/commands/M0010.json
|
|
591
|
+
- schemas/tlc/1.0.14/commands/M0011.json
|
|
592
|
+
- schemas/tlc/1.0.14/commands/M0012.json
|
|
593
|
+
- schemas/tlc/1.0.14/commands/M0013.json
|
|
594
|
+
- schemas/tlc/1.0.14/commands/M0014.json
|
|
595
|
+
- schemas/tlc/1.0.14/commands/M0015.json
|
|
596
|
+
- schemas/tlc/1.0.14/commands/M0016.json
|
|
597
|
+
- schemas/tlc/1.0.14/commands/M0017.json
|
|
598
|
+
- schemas/tlc/1.0.14/commands/M0018.json
|
|
599
|
+
- schemas/tlc/1.0.14/commands/M0019.json
|
|
600
|
+
- schemas/tlc/1.0.14/commands/M0103.json
|
|
601
|
+
- schemas/tlc/1.0.14/commands/M0104.json
|
|
602
|
+
- schemas/tlc/1.0.14/commands/command_requests.json
|
|
603
|
+
- schemas/tlc/1.0.14/commands/command_responses.json
|
|
604
|
+
- schemas/tlc/1.0.14/commands/commands.json
|
|
605
|
+
- schemas/tlc/1.0.14/defs/definitions.json
|
|
606
|
+
- schemas/tlc/1.0.14/defs/guards.json
|
|
607
|
+
- schemas/tlc/1.0.14/rsmp.json
|
|
608
|
+
- schemas/tlc/1.0.14/statuses/S0001.json
|
|
609
|
+
- schemas/tlc/1.0.14/statuses/S0002.json
|
|
610
|
+
- schemas/tlc/1.0.14/statuses/S0003.json
|
|
611
|
+
- schemas/tlc/1.0.14/statuses/S0004.json
|
|
612
|
+
- schemas/tlc/1.0.14/statuses/S0005.json
|
|
613
|
+
- schemas/tlc/1.0.14/statuses/S0006.json
|
|
614
|
+
- schemas/tlc/1.0.14/statuses/S0007.json
|
|
615
|
+
- schemas/tlc/1.0.14/statuses/S0008.json
|
|
616
|
+
- schemas/tlc/1.0.14/statuses/S0009.json
|
|
617
|
+
- schemas/tlc/1.0.14/statuses/S0010.json
|
|
618
|
+
- schemas/tlc/1.0.14/statuses/S0011.json
|
|
619
|
+
- schemas/tlc/1.0.14/statuses/S0012.json
|
|
620
|
+
- schemas/tlc/1.0.14/statuses/S0013.json
|
|
621
|
+
- schemas/tlc/1.0.14/statuses/S0014.json
|
|
622
|
+
- schemas/tlc/1.0.14/statuses/S0015.json
|
|
623
|
+
- schemas/tlc/1.0.14/statuses/S0016.json
|
|
624
|
+
- schemas/tlc/1.0.14/statuses/S0017.json
|
|
625
|
+
- schemas/tlc/1.0.14/statuses/S0018.json
|
|
626
|
+
- schemas/tlc/1.0.14/statuses/S0019.json
|
|
627
|
+
- schemas/tlc/1.0.14/statuses/S0020.json
|
|
628
|
+
- schemas/tlc/1.0.14/statuses/S0021.json
|
|
629
|
+
- schemas/tlc/1.0.14/statuses/S0022.json
|
|
630
|
+
- schemas/tlc/1.0.14/statuses/S0023.json
|
|
631
|
+
- schemas/tlc/1.0.14/statuses/S0024.json
|
|
632
|
+
- schemas/tlc/1.0.14/statuses/S0025.json
|
|
633
|
+
- schemas/tlc/1.0.14/statuses/S0026.json
|
|
634
|
+
- schemas/tlc/1.0.14/statuses/S0027.json
|
|
635
|
+
- schemas/tlc/1.0.14/statuses/S0028.json
|
|
636
|
+
- schemas/tlc/1.0.14/statuses/S0029.json
|
|
637
|
+
- schemas/tlc/1.0.14/statuses/S0091.json
|
|
638
|
+
- schemas/tlc/1.0.14/statuses/S0092.json
|
|
639
|
+
- schemas/tlc/1.0.14/statuses/S0095.json
|
|
640
|
+
- schemas/tlc/1.0.14/statuses/S0096.json
|
|
641
|
+
- schemas/tlc/1.0.14/statuses/S0201.json
|
|
642
|
+
- schemas/tlc/1.0.14/statuses/S0202.json
|
|
643
|
+
- schemas/tlc/1.0.14/statuses/S0203.json
|
|
644
|
+
- schemas/tlc/1.0.14/statuses/S0204.json
|
|
645
|
+
- schemas/tlc/1.0.14/statuses/S0205.json
|
|
646
|
+
- schemas/tlc/1.0.14/statuses/S0206.json
|
|
647
|
+
- schemas/tlc/1.0.14/statuses/S0207.json
|
|
648
|
+
- schemas/tlc/1.0.14/statuses/S0208.json
|
|
649
|
+
- schemas/tlc/1.0.14/statuses/statuses.json
|
|
650
|
+
- schemas/tlc/1.0.14/sxl.yaml
|
|
651
|
+
- schemas/tlc/1.0.15/alarms/A0001.json
|
|
652
|
+
- schemas/tlc/1.0.15/alarms/A0002.json
|
|
653
|
+
- schemas/tlc/1.0.15/alarms/A0003.json
|
|
654
|
+
- schemas/tlc/1.0.15/alarms/A0004.json
|
|
655
|
+
- schemas/tlc/1.0.15/alarms/A0005.json
|
|
656
|
+
- schemas/tlc/1.0.15/alarms/A0006.json
|
|
657
|
+
- schemas/tlc/1.0.15/alarms/A0007.json
|
|
658
|
+
- schemas/tlc/1.0.15/alarms/A0008.json
|
|
659
|
+
- schemas/tlc/1.0.15/alarms/A0009.json
|
|
660
|
+
- schemas/tlc/1.0.15/alarms/A0010.json
|
|
661
|
+
- schemas/tlc/1.0.15/alarms/A0101.json
|
|
662
|
+
- schemas/tlc/1.0.15/alarms/A0201.json
|
|
663
|
+
- schemas/tlc/1.0.15/alarms/A0202.json
|
|
664
|
+
- schemas/tlc/1.0.15/alarms/A0301.json
|
|
665
|
+
- schemas/tlc/1.0.15/alarms/A0302.json
|
|
666
|
+
- schemas/tlc/1.0.15/alarms/alarms.json
|
|
667
|
+
- schemas/tlc/1.0.15/commands/M0001.json
|
|
668
|
+
- schemas/tlc/1.0.15/commands/M0002.json
|
|
669
|
+
- schemas/tlc/1.0.15/commands/M0003.json
|
|
670
|
+
- schemas/tlc/1.0.15/commands/M0004.json
|
|
671
|
+
- schemas/tlc/1.0.15/commands/M0005.json
|
|
672
|
+
- schemas/tlc/1.0.15/commands/M0006.json
|
|
673
|
+
- schemas/tlc/1.0.15/commands/M0007.json
|
|
674
|
+
- schemas/tlc/1.0.15/commands/M0008.json
|
|
675
|
+
- schemas/tlc/1.0.15/commands/M0010.json
|
|
676
|
+
- schemas/tlc/1.0.15/commands/M0011.json
|
|
677
|
+
- schemas/tlc/1.0.15/commands/M0012.json
|
|
678
|
+
- schemas/tlc/1.0.15/commands/M0013.json
|
|
679
|
+
- schemas/tlc/1.0.15/commands/M0014.json
|
|
680
|
+
- schemas/tlc/1.0.15/commands/M0015.json
|
|
681
|
+
- schemas/tlc/1.0.15/commands/M0016.json
|
|
682
|
+
- schemas/tlc/1.0.15/commands/M0017.json
|
|
683
|
+
- schemas/tlc/1.0.15/commands/M0018.json
|
|
684
|
+
- schemas/tlc/1.0.15/commands/M0019.json
|
|
685
|
+
- schemas/tlc/1.0.15/commands/M0020.json
|
|
686
|
+
- schemas/tlc/1.0.15/commands/M0021.json
|
|
687
|
+
- schemas/tlc/1.0.15/commands/M0103.json
|
|
688
|
+
- schemas/tlc/1.0.15/commands/M0104.json
|
|
689
|
+
- schemas/tlc/1.0.15/commands/command_requests.json
|
|
690
|
+
- schemas/tlc/1.0.15/commands/command_responses.json
|
|
691
|
+
- schemas/tlc/1.0.15/commands/commands.json
|
|
692
|
+
- schemas/tlc/1.0.15/defs/definitions.json
|
|
693
|
+
- schemas/tlc/1.0.15/defs/guards.json
|
|
694
|
+
- schemas/tlc/1.0.15/rsmp.json
|
|
695
|
+
- schemas/tlc/1.0.15/statuses/S0001.json
|
|
696
|
+
- schemas/tlc/1.0.15/statuses/S0002.json
|
|
697
|
+
- schemas/tlc/1.0.15/statuses/S0003.json
|
|
698
|
+
- schemas/tlc/1.0.15/statuses/S0004.json
|
|
699
|
+
- schemas/tlc/1.0.15/statuses/S0005.json
|
|
700
|
+
- schemas/tlc/1.0.15/statuses/S0006.json
|
|
701
|
+
- schemas/tlc/1.0.15/statuses/S0007.json
|
|
702
|
+
- schemas/tlc/1.0.15/statuses/S0008.json
|
|
703
|
+
- schemas/tlc/1.0.15/statuses/S0009.json
|
|
704
|
+
- schemas/tlc/1.0.15/statuses/S0010.json
|
|
705
|
+
- schemas/tlc/1.0.15/statuses/S0011.json
|
|
706
|
+
- schemas/tlc/1.0.15/statuses/S0012.json
|
|
707
|
+
- schemas/tlc/1.0.15/statuses/S0013.json
|
|
708
|
+
- schemas/tlc/1.0.15/statuses/S0014.json
|
|
709
|
+
- schemas/tlc/1.0.15/statuses/S0015.json
|
|
710
|
+
- schemas/tlc/1.0.15/statuses/S0016.json
|
|
711
|
+
- schemas/tlc/1.0.15/statuses/S0017.json
|
|
712
|
+
- schemas/tlc/1.0.15/statuses/S0018.json
|
|
713
|
+
- schemas/tlc/1.0.15/statuses/S0019.json
|
|
714
|
+
- schemas/tlc/1.0.15/statuses/S0020.json
|
|
715
|
+
- schemas/tlc/1.0.15/statuses/S0021.json
|
|
716
|
+
- schemas/tlc/1.0.15/statuses/S0022.json
|
|
717
|
+
- schemas/tlc/1.0.15/statuses/S0023.json
|
|
718
|
+
- schemas/tlc/1.0.15/statuses/S0024.json
|
|
719
|
+
- schemas/tlc/1.0.15/statuses/S0025.json
|
|
720
|
+
- schemas/tlc/1.0.15/statuses/S0026.json
|
|
721
|
+
- schemas/tlc/1.0.15/statuses/S0027.json
|
|
722
|
+
- schemas/tlc/1.0.15/statuses/S0028.json
|
|
723
|
+
- schemas/tlc/1.0.15/statuses/S0029.json
|
|
724
|
+
- schemas/tlc/1.0.15/statuses/S0030.json
|
|
725
|
+
- schemas/tlc/1.0.15/statuses/S0031.json
|
|
726
|
+
- schemas/tlc/1.0.15/statuses/S0091.json
|
|
727
|
+
- schemas/tlc/1.0.15/statuses/S0092.json
|
|
728
|
+
- schemas/tlc/1.0.15/statuses/S0095.json
|
|
729
|
+
- schemas/tlc/1.0.15/statuses/S0096.json
|
|
730
|
+
- schemas/tlc/1.0.15/statuses/S0097.json
|
|
731
|
+
- schemas/tlc/1.0.15/statuses/S0098.json
|
|
732
|
+
- schemas/tlc/1.0.15/statuses/S0201.json
|
|
733
|
+
- schemas/tlc/1.0.15/statuses/S0202.json
|
|
734
|
+
- schemas/tlc/1.0.15/statuses/S0203.json
|
|
735
|
+
- schemas/tlc/1.0.15/statuses/S0204.json
|
|
736
|
+
- schemas/tlc/1.0.15/statuses/S0205.json
|
|
737
|
+
- schemas/tlc/1.0.15/statuses/S0206.json
|
|
738
|
+
- schemas/tlc/1.0.15/statuses/S0207.json
|
|
739
|
+
- schemas/tlc/1.0.15/statuses/S0208.json
|
|
740
|
+
- schemas/tlc/1.0.15/statuses/statuses.json
|
|
741
|
+
- schemas/tlc/1.0.15/sxl.yaml
|
|
742
|
+
- schemas/tlc/1.0.7/alarms/A0001.json
|
|
743
|
+
- schemas/tlc/1.0.7/alarms/A0002.json
|
|
744
|
+
- schemas/tlc/1.0.7/alarms/A0003.json
|
|
745
|
+
- schemas/tlc/1.0.7/alarms/A0004.json
|
|
746
|
+
- schemas/tlc/1.0.7/alarms/A0005.json
|
|
747
|
+
- schemas/tlc/1.0.7/alarms/A0006.json
|
|
748
|
+
- schemas/tlc/1.0.7/alarms/A0007.json
|
|
749
|
+
- schemas/tlc/1.0.7/alarms/A0008.json
|
|
750
|
+
- schemas/tlc/1.0.7/alarms/A0009.json
|
|
751
|
+
- schemas/tlc/1.0.7/alarms/A0101.json
|
|
752
|
+
- schemas/tlc/1.0.7/alarms/A0201.json
|
|
753
|
+
- schemas/tlc/1.0.7/alarms/A0202.json
|
|
754
|
+
- schemas/tlc/1.0.7/alarms/A0301.json
|
|
755
|
+
- schemas/tlc/1.0.7/alarms/A0302.json
|
|
756
|
+
- schemas/tlc/1.0.7/alarms/alarms.json
|
|
757
|
+
- schemas/tlc/1.0.7/commands/M0001.json
|
|
758
|
+
- schemas/tlc/1.0.7/commands/M0002.json
|
|
759
|
+
- schemas/tlc/1.0.7/commands/M0003.json
|
|
760
|
+
- schemas/tlc/1.0.7/commands/M0004.json
|
|
761
|
+
- schemas/tlc/1.0.7/commands/M0005.json
|
|
762
|
+
- schemas/tlc/1.0.7/commands/M0006.json
|
|
763
|
+
- schemas/tlc/1.0.7/commands/M0007.json
|
|
764
|
+
- schemas/tlc/1.0.7/commands/M0008.json
|
|
765
|
+
- schemas/tlc/1.0.7/commands/M0010.json
|
|
766
|
+
- schemas/tlc/1.0.7/commands/M0011.json
|
|
767
|
+
- schemas/tlc/1.0.7/commands/M0019.json
|
|
768
|
+
- schemas/tlc/1.0.7/commands/M0103.json
|
|
769
|
+
- schemas/tlc/1.0.7/commands/M0104.json
|
|
770
|
+
- schemas/tlc/1.0.7/commands/command_requests.json
|
|
771
|
+
- schemas/tlc/1.0.7/commands/command_responses.json
|
|
772
|
+
- schemas/tlc/1.0.7/commands/commands.json
|
|
773
|
+
- schemas/tlc/1.0.7/defs/definitions.json
|
|
774
|
+
- schemas/tlc/1.0.7/defs/guards.json
|
|
775
|
+
- schemas/tlc/1.0.7/rsmp.json
|
|
776
|
+
- schemas/tlc/1.0.7/statuses/S0001.json
|
|
777
|
+
- schemas/tlc/1.0.7/statuses/S0002.json
|
|
778
|
+
- schemas/tlc/1.0.7/statuses/S0003.json
|
|
779
|
+
- schemas/tlc/1.0.7/statuses/S0004.json
|
|
780
|
+
- schemas/tlc/1.0.7/statuses/S0005.json
|
|
781
|
+
- schemas/tlc/1.0.7/statuses/S0006.json
|
|
782
|
+
- schemas/tlc/1.0.7/statuses/S0007.json
|
|
783
|
+
- schemas/tlc/1.0.7/statuses/S0008.json
|
|
784
|
+
- schemas/tlc/1.0.7/statuses/S0009.json
|
|
785
|
+
- schemas/tlc/1.0.7/statuses/S0010.json
|
|
786
|
+
- schemas/tlc/1.0.7/statuses/S0011.json
|
|
787
|
+
- schemas/tlc/1.0.7/statuses/S0012.json
|
|
788
|
+
- schemas/tlc/1.0.7/statuses/S0013.json
|
|
789
|
+
- schemas/tlc/1.0.7/statuses/S0014.json
|
|
790
|
+
- schemas/tlc/1.0.7/statuses/S0015.json
|
|
791
|
+
- schemas/tlc/1.0.7/statuses/S0016.json
|
|
792
|
+
- schemas/tlc/1.0.7/statuses/S0017.json
|
|
793
|
+
- schemas/tlc/1.0.7/statuses/S0018.json
|
|
794
|
+
- schemas/tlc/1.0.7/statuses/S0019.json
|
|
795
|
+
- schemas/tlc/1.0.7/statuses/S0020.json
|
|
796
|
+
- schemas/tlc/1.0.7/statuses/S0021.json
|
|
797
|
+
- schemas/tlc/1.0.7/statuses/S0025.json
|
|
798
|
+
- schemas/tlc/1.0.7/statuses/S0091.json
|
|
799
|
+
- schemas/tlc/1.0.7/statuses/S0092.json
|
|
800
|
+
- schemas/tlc/1.0.7/statuses/S0095.json
|
|
801
|
+
- schemas/tlc/1.0.7/statuses/S0096.json
|
|
802
|
+
- schemas/tlc/1.0.7/statuses/S0201.json
|
|
803
|
+
- schemas/tlc/1.0.7/statuses/S0202.json
|
|
804
|
+
- schemas/tlc/1.0.7/statuses/S0203.json
|
|
805
|
+
- schemas/tlc/1.0.7/statuses/S0204.json
|
|
806
|
+
- schemas/tlc/1.0.7/statuses/statuses.json
|
|
807
|
+
- schemas/tlc/1.0.7/sxl.yaml
|
|
808
|
+
- schemas/tlc/1.0.8/alarms/A0001.json
|
|
809
|
+
- schemas/tlc/1.0.8/alarms/A0002.json
|
|
810
|
+
- schemas/tlc/1.0.8/alarms/A0003.json
|
|
811
|
+
- schemas/tlc/1.0.8/alarms/A0004.json
|
|
812
|
+
- schemas/tlc/1.0.8/alarms/A0005.json
|
|
813
|
+
- schemas/tlc/1.0.8/alarms/A0006.json
|
|
814
|
+
- schemas/tlc/1.0.8/alarms/A0007.json
|
|
815
|
+
- schemas/tlc/1.0.8/alarms/A0008.json
|
|
816
|
+
- schemas/tlc/1.0.8/alarms/A0009.json
|
|
817
|
+
- schemas/tlc/1.0.8/alarms/A0101.json
|
|
818
|
+
- schemas/tlc/1.0.8/alarms/A0201.json
|
|
819
|
+
- schemas/tlc/1.0.8/alarms/A0202.json
|
|
820
|
+
- schemas/tlc/1.0.8/alarms/A0301.json
|
|
821
|
+
- schemas/tlc/1.0.8/alarms/A0302.json
|
|
822
|
+
- schemas/tlc/1.0.8/alarms/alarms.json
|
|
823
|
+
- schemas/tlc/1.0.8/commands/M0001.json
|
|
824
|
+
- schemas/tlc/1.0.8/commands/M0002.json
|
|
825
|
+
- schemas/tlc/1.0.8/commands/M0003.json
|
|
826
|
+
- schemas/tlc/1.0.8/commands/M0004.json
|
|
827
|
+
- schemas/tlc/1.0.8/commands/M0005.json
|
|
828
|
+
- schemas/tlc/1.0.8/commands/M0006.json
|
|
829
|
+
- schemas/tlc/1.0.8/commands/M0007.json
|
|
830
|
+
- schemas/tlc/1.0.8/commands/M0008.json
|
|
831
|
+
- schemas/tlc/1.0.8/commands/M0010.json
|
|
832
|
+
- schemas/tlc/1.0.8/commands/M0011.json
|
|
833
|
+
- schemas/tlc/1.0.8/commands/M0012.json
|
|
834
|
+
- schemas/tlc/1.0.8/commands/M0013.json
|
|
835
|
+
- schemas/tlc/1.0.8/commands/M0019.json
|
|
836
|
+
- schemas/tlc/1.0.8/commands/M0103.json
|
|
837
|
+
- schemas/tlc/1.0.8/commands/M0104.json
|
|
838
|
+
- schemas/tlc/1.0.8/commands/command_requests.json
|
|
839
|
+
- schemas/tlc/1.0.8/commands/command_responses.json
|
|
840
|
+
- schemas/tlc/1.0.8/commands/commands.json
|
|
841
|
+
- schemas/tlc/1.0.8/defs/definitions.json
|
|
842
|
+
- schemas/tlc/1.0.8/defs/guards.json
|
|
843
|
+
- schemas/tlc/1.0.8/rsmp.json
|
|
844
|
+
- schemas/tlc/1.0.8/statuses/S0001.json
|
|
845
|
+
- schemas/tlc/1.0.8/statuses/S0002.json
|
|
846
|
+
- schemas/tlc/1.0.8/statuses/S0003.json
|
|
847
|
+
- schemas/tlc/1.0.8/statuses/S0004.json
|
|
848
|
+
- schemas/tlc/1.0.8/statuses/S0005.json
|
|
849
|
+
- schemas/tlc/1.0.8/statuses/S0006.json
|
|
850
|
+
- schemas/tlc/1.0.8/statuses/S0007.json
|
|
851
|
+
- schemas/tlc/1.0.8/statuses/S0008.json
|
|
852
|
+
- schemas/tlc/1.0.8/statuses/S0009.json
|
|
853
|
+
- schemas/tlc/1.0.8/statuses/S0010.json
|
|
854
|
+
- schemas/tlc/1.0.8/statuses/S0011.json
|
|
855
|
+
- schemas/tlc/1.0.8/statuses/S0012.json
|
|
856
|
+
- schemas/tlc/1.0.8/statuses/S0013.json
|
|
857
|
+
- schemas/tlc/1.0.8/statuses/S0014.json
|
|
858
|
+
- schemas/tlc/1.0.8/statuses/S0015.json
|
|
859
|
+
- schemas/tlc/1.0.8/statuses/S0016.json
|
|
860
|
+
- schemas/tlc/1.0.8/statuses/S0017.json
|
|
861
|
+
- schemas/tlc/1.0.8/statuses/S0018.json
|
|
862
|
+
- schemas/tlc/1.0.8/statuses/S0019.json
|
|
863
|
+
- schemas/tlc/1.0.8/statuses/S0020.json
|
|
864
|
+
- schemas/tlc/1.0.8/statuses/S0021.json
|
|
865
|
+
- schemas/tlc/1.0.8/statuses/S0025.json
|
|
866
|
+
- schemas/tlc/1.0.8/statuses/S0091.json
|
|
867
|
+
- schemas/tlc/1.0.8/statuses/S0092.json
|
|
868
|
+
- schemas/tlc/1.0.8/statuses/S0095.json
|
|
869
|
+
- schemas/tlc/1.0.8/statuses/S0096.json
|
|
870
|
+
- schemas/tlc/1.0.8/statuses/S0201.json
|
|
871
|
+
- schemas/tlc/1.0.8/statuses/S0202.json
|
|
872
|
+
- schemas/tlc/1.0.8/statuses/S0203.json
|
|
873
|
+
- schemas/tlc/1.0.8/statuses/S0204.json
|
|
874
|
+
- schemas/tlc/1.0.8/statuses/statuses.json
|
|
875
|
+
- schemas/tlc/1.0.8/sxl.yaml
|
|
876
|
+
- schemas/tlc/1.0.9/alarms/A0001.json
|
|
877
|
+
- schemas/tlc/1.0.9/alarms/A0002.json
|
|
878
|
+
- schemas/tlc/1.0.9/alarms/A0003.json
|
|
879
|
+
- schemas/tlc/1.0.9/alarms/A0004.json
|
|
880
|
+
- schemas/tlc/1.0.9/alarms/A0005.json
|
|
881
|
+
- schemas/tlc/1.0.9/alarms/A0006.json
|
|
882
|
+
- schemas/tlc/1.0.9/alarms/A0007.json
|
|
883
|
+
- schemas/tlc/1.0.9/alarms/A0008.json
|
|
884
|
+
- schemas/tlc/1.0.9/alarms/A0009.json
|
|
885
|
+
- schemas/tlc/1.0.9/alarms/A0101.json
|
|
886
|
+
- schemas/tlc/1.0.9/alarms/A0201.json
|
|
887
|
+
- schemas/tlc/1.0.9/alarms/A0202.json
|
|
888
|
+
- schemas/tlc/1.0.9/alarms/A0301.json
|
|
889
|
+
- schemas/tlc/1.0.9/alarms/A0302.json
|
|
890
|
+
- schemas/tlc/1.0.9/alarms/alarms.json
|
|
891
|
+
- schemas/tlc/1.0.9/commands/M0001.json
|
|
892
|
+
- schemas/tlc/1.0.9/commands/M0002.json
|
|
893
|
+
- schemas/tlc/1.0.9/commands/M0003.json
|
|
894
|
+
- schemas/tlc/1.0.9/commands/M0004.json
|
|
895
|
+
- schemas/tlc/1.0.9/commands/M0005.json
|
|
896
|
+
- schemas/tlc/1.0.9/commands/M0006.json
|
|
897
|
+
- schemas/tlc/1.0.9/commands/M0007.json
|
|
898
|
+
- schemas/tlc/1.0.9/commands/M0008.json
|
|
899
|
+
- schemas/tlc/1.0.9/commands/M0010.json
|
|
900
|
+
- schemas/tlc/1.0.9/commands/M0011.json
|
|
901
|
+
- schemas/tlc/1.0.9/commands/M0012.json
|
|
902
|
+
- schemas/tlc/1.0.9/commands/M0013.json
|
|
903
|
+
- schemas/tlc/1.0.9/commands/M0019.json
|
|
904
|
+
- schemas/tlc/1.0.9/commands/M0103.json
|
|
905
|
+
- schemas/tlc/1.0.9/commands/M0104.json
|
|
906
|
+
- schemas/tlc/1.0.9/commands/command_requests.json
|
|
907
|
+
- schemas/tlc/1.0.9/commands/command_responses.json
|
|
908
|
+
- schemas/tlc/1.0.9/commands/commands.json
|
|
909
|
+
- schemas/tlc/1.0.9/defs/definitions.json
|
|
910
|
+
- schemas/tlc/1.0.9/defs/guards.json
|
|
911
|
+
- schemas/tlc/1.0.9/rsmp.json
|
|
912
|
+
- schemas/tlc/1.0.9/statuses/S0001.json
|
|
913
|
+
- schemas/tlc/1.0.9/statuses/S0002.json
|
|
914
|
+
- schemas/tlc/1.0.9/statuses/S0003.json
|
|
915
|
+
- schemas/tlc/1.0.9/statuses/S0004.json
|
|
916
|
+
- schemas/tlc/1.0.9/statuses/S0005.json
|
|
917
|
+
- schemas/tlc/1.0.9/statuses/S0006.json
|
|
918
|
+
- schemas/tlc/1.0.9/statuses/S0007.json
|
|
919
|
+
- schemas/tlc/1.0.9/statuses/S0008.json
|
|
920
|
+
- schemas/tlc/1.0.9/statuses/S0009.json
|
|
921
|
+
- schemas/tlc/1.0.9/statuses/S0010.json
|
|
922
|
+
- schemas/tlc/1.0.9/statuses/S0011.json
|
|
923
|
+
- schemas/tlc/1.0.9/statuses/S0012.json
|
|
924
|
+
- schemas/tlc/1.0.9/statuses/S0013.json
|
|
925
|
+
- schemas/tlc/1.0.9/statuses/S0014.json
|
|
926
|
+
- schemas/tlc/1.0.9/statuses/S0015.json
|
|
927
|
+
- schemas/tlc/1.0.9/statuses/S0016.json
|
|
928
|
+
- schemas/tlc/1.0.9/statuses/S0017.json
|
|
929
|
+
- schemas/tlc/1.0.9/statuses/S0018.json
|
|
930
|
+
- schemas/tlc/1.0.9/statuses/S0019.json
|
|
931
|
+
- schemas/tlc/1.0.9/statuses/S0020.json
|
|
932
|
+
- schemas/tlc/1.0.9/statuses/S0021.json
|
|
933
|
+
- schemas/tlc/1.0.9/statuses/S0025.json
|
|
934
|
+
- schemas/tlc/1.0.9/statuses/S0091.json
|
|
935
|
+
- schemas/tlc/1.0.9/statuses/S0092.json
|
|
936
|
+
- schemas/tlc/1.0.9/statuses/S0095.json
|
|
937
|
+
- schemas/tlc/1.0.9/statuses/S0096.json
|
|
938
|
+
- schemas/tlc/1.0.9/statuses/S0201.json
|
|
939
|
+
- schemas/tlc/1.0.9/statuses/S0202.json
|
|
940
|
+
- schemas/tlc/1.0.9/statuses/S0203.json
|
|
941
|
+
- schemas/tlc/1.0.9/statuses/S0204.json
|
|
942
|
+
- schemas/tlc/1.0.9/statuses/statuses.json
|
|
943
|
+
- schemas/tlc/1.0.9/sxl.yaml
|
|
944
|
+
- schemas/tlc/1.1.0/alarms/A0001.json
|
|
945
|
+
- schemas/tlc/1.1.0/alarms/A0002.json
|
|
946
|
+
- schemas/tlc/1.1.0/alarms/A0003.json
|
|
947
|
+
- schemas/tlc/1.1.0/alarms/A0004.json
|
|
948
|
+
- schemas/tlc/1.1.0/alarms/A0005.json
|
|
949
|
+
- schemas/tlc/1.1.0/alarms/A0006.json
|
|
950
|
+
- schemas/tlc/1.1.0/alarms/A0007.json
|
|
951
|
+
- schemas/tlc/1.1.0/alarms/A0008.json
|
|
952
|
+
- schemas/tlc/1.1.0/alarms/A0009.json
|
|
953
|
+
- schemas/tlc/1.1.0/alarms/A0010.json
|
|
954
|
+
- schemas/tlc/1.1.0/alarms/A0101.json
|
|
955
|
+
- schemas/tlc/1.1.0/alarms/A0201.json
|
|
956
|
+
- schemas/tlc/1.1.0/alarms/A0202.json
|
|
957
|
+
- schemas/tlc/1.1.0/alarms/A0301.json
|
|
958
|
+
- schemas/tlc/1.1.0/alarms/A0302.json
|
|
959
|
+
- schemas/tlc/1.1.0/alarms/A0303.json
|
|
960
|
+
- schemas/tlc/1.1.0/alarms/A0304.json
|
|
961
|
+
- schemas/tlc/1.1.0/alarms/alarms.json
|
|
962
|
+
- schemas/tlc/1.1.0/commands/M0001.json
|
|
963
|
+
- schemas/tlc/1.1.0/commands/M0002.json
|
|
964
|
+
- schemas/tlc/1.1.0/commands/M0003.json
|
|
965
|
+
- schemas/tlc/1.1.0/commands/M0004.json
|
|
966
|
+
- schemas/tlc/1.1.0/commands/M0005.json
|
|
967
|
+
- schemas/tlc/1.1.0/commands/M0006.json
|
|
968
|
+
- schemas/tlc/1.1.0/commands/M0007.json
|
|
969
|
+
- schemas/tlc/1.1.0/commands/M0008.json
|
|
970
|
+
- schemas/tlc/1.1.0/commands/M0010.json
|
|
971
|
+
- schemas/tlc/1.1.0/commands/M0011.json
|
|
972
|
+
- schemas/tlc/1.1.0/commands/M0012.json
|
|
973
|
+
- schemas/tlc/1.1.0/commands/M0013.json
|
|
974
|
+
- schemas/tlc/1.1.0/commands/M0014.json
|
|
975
|
+
- schemas/tlc/1.1.0/commands/M0015.json
|
|
976
|
+
- schemas/tlc/1.1.0/commands/M0016.json
|
|
977
|
+
- schemas/tlc/1.1.0/commands/M0017.json
|
|
978
|
+
- schemas/tlc/1.1.0/commands/M0018.json
|
|
979
|
+
- schemas/tlc/1.1.0/commands/M0019.json
|
|
980
|
+
- schemas/tlc/1.1.0/commands/M0020.json
|
|
981
|
+
- schemas/tlc/1.1.0/commands/M0021.json
|
|
982
|
+
- schemas/tlc/1.1.0/commands/M0022.json
|
|
983
|
+
- schemas/tlc/1.1.0/commands/M0023.json
|
|
984
|
+
- schemas/tlc/1.1.0/commands/M0103.json
|
|
985
|
+
- schemas/tlc/1.1.0/commands/M0104.json
|
|
986
|
+
- schemas/tlc/1.1.0/commands/command_requests.json
|
|
987
|
+
- schemas/tlc/1.1.0/commands/command_responses.json
|
|
988
|
+
- schemas/tlc/1.1.0/commands/commands.json
|
|
989
|
+
- schemas/tlc/1.1.0/defs/definitions.json
|
|
990
|
+
- schemas/tlc/1.1.0/defs/guards.json
|
|
991
|
+
- schemas/tlc/1.1.0/rsmp.json
|
|
992
|
+
- schemas/tlc/1.1.0/statuses/S0001.json
|
|
993
|
+
- schemas/tlc/1.1.0/statuses/S0002.json
|
|
994
|
+
- schemas/tlc/1.1.0/statuses/S0003.json
|
|
995
|
+
- schemas/tlc/1.1.0/statuses/S0004.json
|
|
996
|
+
- schemas/tlc/1.1.0/statuses/S0005.json
|
|
997
|
+
- schemas/tlc/1.1.0/statuses/S0006.json
|
|
998
|
+
- schemas/tlc/1.1.0/statuses/S0007.json
|
|
999
|
+
- schemas/tlc/1.1.0/statuses/S0008.json
|
|
1000
|
+
- schemas/tlc/1.1.0/statuses/S0009.json
|
|
1001
|
+
- schemas/tlc/1.1.0/statuses/S0010.json
|
|
1002
|
+
- schemas/tlc/1.1.0/statuses/S0011.json
|
|
1003
|
+
- schemas/tlc/1.1.0/statuses/S0012.json
|
|
1004
|
+
- schemas/tlc/1.1.0/statuses/S0013.json
|
|
1005
|
+
- schemas/tlc/1.1.0/statuses/S0014.json
|
|
1006
|
+
- schemas/tlc/1.1.0/statuses/S0015.json
|
|
1007
|
+
- schemas/tlc/1.1.0/statuses/S0016.json
|
|
1008
|
+
- schemas/tlc/1.1.0/statuses/S0017.json
|
|
1009
|
+
- schemas/tlc/1.1.0/statuses/S0018.json
|
|
1010
|
+
- schemas/tlc/1.1.0/statuses/S0019.json
|
|
1011
|
+
- schemas/tlc/1.1.0/statuses/S0020.json
|
|
1012
|
+
- schemas/tlc/1.1.0/statuses/S0021.json
|
|
1013
|
+
- schemas/tlc/1.1.0/statuses/S0022.json
|
|
1014
|
+
- schemas/tlc/1.1.0/statuses/S0023.json
|
|
1015
|
+
- schemas/tlc/1.1.0/statuses/S0024.json
|
|
1016
|
+
- schemas/tlc/1.1.0/statuses/S0025.json
|
|
1017
|
+
- schemas/tlc/1.1.0/statuses/S0026.json
|
|
1018
|
+
- schemas/tlc/1.1.0/statuses/S0027.json
|
|
1019
|
+
- schemas/tlc/1.1.0/statuses/S0028.json
|
|
1020
|
+
- schemas/tlc/1.1.0/statuses/S0029.json
|
|
1021
|
+
- schemas/tlc/1.1.0/statuses/S0030.json
|
|
1022
|
+
- schemas/tlc/1.1.0/statuses/S0031.json
|
|
1023
|
+
- schemas/tlc/1.1.0/statuses/S0032.json
|
|
1024
|
+
- schemas/tlc/1.1.0/statuses/S0033.json
|
|
1025
|
+
- schemas/tlc/1.1.0/statuses/S0034.json
|
|
1026
|
+
- schemas/tlc/1.1.0/statuses/S0091.json
|
|
1027
|
+
- schemas/tlc/1.1.0/statuses/S0092.json
|
|
1028
|
+
- schemas/tlc/1.1.0/statuses/S0095.json
|
|
1029
|
+
- schemas/tlc/1.1.0/statuses/S0096.json
|
|
1030
|
+
- schemas/tlc/1.1.0/statuses/S0097.json
|
|
1031
|
+
- schemas/tlc/1.1.0/statuses/S0098.json
|
|
1032
|
+
- schemas/tlc/1.1.0/statuses/S0201.json
|
|
1033
|
+
- schemas/tlc/1.1.0/statuses/S0202.json
|
|
1034
|
+
- schemas/tlc/1.1.0/statuses/S0203.json
|
|
1035
|
+
- schemas/tlc/1.1.0/statuses/S0204.json
|
|
1036
|
+
- schemas/tlc/1.1.0/statuses/S0205.json
|
|
1037
|
+
- schemas/tlc/1.1.0/statuses/S0206.json
|
|
1038
|
+
- schemas/tlc/1.1.0/statuses/S0207.json
|
|
1039
|
+
- schemas/tlc/1.1.0/statuses/S0208.json
|
|
1040
|
+
- schemas/tlc/1.1.0/statuses/statuses.json
|
|
1041
|
+
- schemas/tlc/1.1.0/sxl.yaml
|
|
1042
|
+
- schemas/tlc/1.2.0/alarms/A0001.json
|
|
1043
|
+
- schemas/tlc/1.2.0/alarms/A0002.json
|
|
1044
|
+
- schemas/tlc/1.2.0/alarms/A0003.json
|
|
1045
|
+
- schemas/tlc/1.2.0/alarms/A0004.json
|
|
1046
|
+
- schemas/tlc/1.2.0/alarms/A0005.json
|
|
1047
|
+
- schemas/tlc/1.2.0/alarms/A0006.json
|
|
1048
|
+
- schemas/tlc/1.2.0/alarms/A0007.json
|
|
1049
|
+
- schemas/tlc/1.2.0/alarms/A0008.json
|
|
1050
|
+
- schemas/tlc/1.2.0/alarms/A0009.json
|
|
1051
|
+
- schemas/tlc/1.2.0/alarms/A0010.json
|
|
1052
|
+
- schemas/tlc/1.2.0/alarms/A0101.json
|
|
1053
|
+
- schemas/tlc/1.2.0/alarms/A0201.json
|
|
1054
|
+
- schemas/tlc/1.2.0/alarms/A0202.json
|
|
1055
|
+
- schemas/tlc/1.2.0/alarms/A0301.json
|
|
1056
|
+
- schemas/tlc/1.2.0/alarms/A0302.json
|
|
1057
|
+
- schemas/tlc/1.2.0/alarms/A0303.json
|
|
1058
|
+
- schemas/tlc/1.2.0/alarms/A0304.json
|
|
1059
|
+
- schemas/tlc/1.2.0/alarms/alarms.json
|
|
1060
|
+
- schemas/tlc/1.2.0/commands/M0001.json
|
|
1061
|
+
- schemas/tlc/1.2.0/commands/M0002.json
|
|
1062
|
+
- schemas/tlc/1.2.0/commands/M0003.json
|
|
1063
|
+
- schemas/tlc/1.2.0/commands/M0004.json
|
|
1064
|
+
- schemas/tlc/1.2.0/commands/M0005.json
|
|
1065
|
+
- schemas/tlc/1.2.0/commands/M0006.json
|
|
1066
|
+
- schemas/tlc/1.2.0/commands/M0007.json
|
|
1067
|
+
- schemas/tlc/1.2.0/commands/M0008.json
|
|
1068
|
+
- schemas/tlc/1.2.0/commands/M0010.json
|
|
1069
|
+
- schemas/tlc/1.2.0/commands/M0011.json
|
|
1070
|
+
- schemas/tlc/1.2.0/commands/M0012.json
|
|
1071
|
+
- schemas/tlc/1.2.0/commands/M0013.json
|
|
1072
|
+
- schemas/tlc/1.2.0/commands/M0014.json
|
|
1073
|
+
- schemas/tlc/1.2.0/commands/M0015.json
|
|
1074
|
+
- schemas/tlc/1.2.0/commands/M0016.json
|
|
1075
|
+
- schemas/tlc/1.2.0/commands/M0017.json
|
|
1076
|
+
- schemas/tlc/1.2.0/commands/M0018.json
|
|
1077
|
+
- schemas/tlc/1.2.0/commands/M0019.json
|
|
1078
|
+
- schemas/tlc/1.2.0/commands/M0020.json
|
|
1079
|
+
- schemas/tlc/1.2.0/commands/M0021.json
|
|
1080
|
+
- schemas/tlc/1.2.0/commands/M0022.json
|
|
1081
|
+
- schemas/tlc/1.2.0/commands/M0023.json
|
|
1082
|
+
- schemas/tlc/1.2.0/commands/M0103.json
|
|
1083
|
+
- schemas/tlc/1.2.0/commands/M0104.json
|
|
1084
|
+
- schemas/tlc/1.2.0/commands/command_requests.json
|
|
1085
|
+
- schemas/tlc/1.2.0/commands/command_responses.json
|
|
1086
|
+
- schemas/tlc/1.2.0/commands/commands.json
|
|
1087
|
+
- schemas/tlc/1.2.0/defs/definitions.json
|
|
1088
|
+
- schemas/tlc/1.2.0/defs/guards.json
|
|
1089
|
+
- schemas/tlc/1.2.0/rsmp.json
|
|
1090
|
+
- schemas/tlc/1.2.0/statuses/S0001.json
|
|
1091
|
+
- schemas/tlc/1.2.0/statuses/S0002.json
|
|
1092
|
+
- schemas/tlc/1.2.0/statuses/S0003.json
|
|
1093
|
+
- schemas/tlc/1.2.0/statuses/S0004.json
|
|
1094
|
+
- schemas/tlc/1.2.0/statuses/S0005.json
|
|
1095
|
+
- schemas/tlc/1.2.0/statuses/S0006.json
|
|
1096
|
+
- schemas/tlc/1.2.0/statuses/S0007.json
|
|
1097
|
+
- schemas/tlc/1.2.0/statuses/S0008.json
|
|
1098
|
+
- schemas/tlc/1.2.0/statuses/S0009.json
|
|
1099
|
+
- schemas/tlc/1.2.0/statuses/S0010.json
|
|
1100
|
+
- schemas/tlc/1.2.0/statuses/S0011.json
|
|
1101
|
+
- schemas/tlc/1.2.0/statuses/S0012.json
|
|
1102
|
+
- schemas/tlc/1.2.0/statuses/S0013.json
|
|
1103
|
+
- schemas/tlc/1.2.0/statuses/S0014.json
|
|
1104
|
+
- schemas/tlc/1.2.0/statuses/S0015.json
|
|
1105
|
+
- schemas/tlc/1.2.0/statuses/S0016.json
|
|
1106
|
+
- schemas/tlc/1.2.0/statuses/S0017.json
|
|
1107
|
+
- schemas/tlc/1.2.0/statuses/S0018.json
|
|
1108
|
+
- schemas/tlc/1.2.0/statuses/S0019.json
|
|
1109
|
+
- schemas/tlc/1.2.0/statuses/S0020.json
|
|
1110
|
+
- schemas/tlc/1.2.0/statuses/S0021.json
|
|
1111
|
+
- schemas/tlc/1.2.0/statuses/S0022.json
|
|
1112
|
+
- schemas/tlc/1.2.0/statuses/S0023.json
|
|
1113
|
+
- schemas/tlc/1.2.0/statuses/S0024.json
|
|
1114
|
+
- schemas/tlc/1.2.0/statuses/S0025.json
|
|
1115
|
+
- schemas/tlc/1.2.0/statuses/S0026.json
|
|
1116
|
+
- schemas/tlc/1.2.0/statuses/S0027.json
|
|
1117
|
+
- schemas/tlc/1.2.0/statuses/S0028.json
|
|
1118
|
+
- schemas/tlc/1.2.0/statuses/S0029.json
|
|
1119
|
+
- schemas/tlc/1.2.0/statuses/S0030.json
|
|
1120
|
+
- schemas/tlc/1.2.0/statuses/S0031.json
|
|
1121
|
+
- schemas/tlc/1.2.0/statuses/S0032.json
|
|
1122
|
+
- schemas/tlc/1.2.0/statuses/S0033.json
|
|
1123
|
+
- schemas/tlc/1.2.0/statuses/S0034.json
|
|
1124
|
+
- schemas/tlc/1.2.0/statuses/S0035.json
|
|
1125
|
+
- schemas/tlc/1.2.0/statuses/S0091.json
|
|
1126
|
+
- schemas/tlc/1.2.0/statuses/S0092.json
|
|
1127
|
+
- schemas/tlc/1.2.0/statuses/S0095.json
|
|
1128
|
+
- schemas/tlc/1.2.0/statuses/S0096.json
|
|
1129
|
+
- schemas/tlc/1.2.0/statuses/S0097.json
|
|
1130
|
+
- schemas/tlc/1.2.0/statuses/S0098.json
|
|
1131
|
+
- schemas/tlc/1.2.0/statuses/S0201.json
|
|
1132
|
+
- schemas/tlc/1.2.0/statuses/S0202.json
|
|
1133
|
+
- schemas/tlc/1.2.0/statuses/S0203.json
|
|
1134
|
+
- schemas/tlc/1.2.0/statuses/S0204.json
|
|
1135
|
+
- schemas/tlc/1.2.0/statuses/S0205.json
|
|
1136
|
+
- schemas/tlc/1.2.0/statuses/S0206.json
|
|
1137
|
+
- schemas/tlc/1.2.0/statuses/S0207.json
|
|
1138
|
+
- schemas/tlc/1.2.0/statuses/S0208.json
|
|
1139
|
+
- schemas/tlc/1.2.0/statuses/statuses.json
|
|
1140
|
+
- schemas/tlc/1.2.0/sxl.yaml
|
|
1141
|
+
- schemas/tlc/1.2.1/alarms/A0001.json
|
|
1142
|
+
- schemas/tlc/1.2.1/alarms/A0002.json
|
|
1143
|
+
- schemas/tlc/1.2.1/alarms/A0003.json
|
|
1144
|
+
- schemas/tlc/1.2.1/alarms/A0004.json
|
|
1145
|
+
- schemas/tlc/1.2.1/alarms/A0005.json
|
|
1146
|
+
- schemas/tlc/1.2.1/alarms/A0006.json
|
|
1147
|
+
- schemas/tlc/1.2.1/alarms/A0007.json
|
|
1148
|
+
- schemas/tlc/1.2.1/alarms/A0008.json
|
|
1149
|
+
- schemas/tlc/1.2.1/alarms/A0009.json
|
|
1150
|
+
- schemas/tlc/1.2.1/alarms/A0010.json
|
|
1151
|
+
- schemas/tlc/1.2.1/alarms/A0101.json
|
|
1152
|
+
- schemas/tlc/1.2.1/alarms/A0201.json
|
|
1153
|
+
- schemas/tlc/1.2.1/alarms/A0202.json
|
|
1154
|
+
- schemas/tlc/1.2.1/alarms/A0301.json
|
|
1155
|
+
- schemas/tlc/1.2.1/alarms/A0302.json
|
|
1156
|
+
- schemas/tlc/1.2.1/alarms/A0303.json
|
|
1157
|
+
- schemas/tlc/1.2.1/alarms/A0304.json
|
|
1158
|
+
- schemas/tlc/1.2.1/alarms/alarms.json
|
|
1159
|
+
- schemas/tlc/1.2.1/commands/M0001.json
|
|
1160
|
+
- schemas/tlc/1.2.1/commands/M0002.json
|
|
1161
|
+
- schemas/tlc/1.2.1/commands/M0003.json
|
|
1162
|
+
- schemas/tlc/1.2.1/commands/M0004.json
|
|
1163
|
+
- schemas/tlc/1.2.1/commands/M0005.json
|
|
1164
|
+
- schemas/tlc/1.2.1/commands/M0006.json
|
|
1165
|
+
- schemas/tlc/1.2.1/commands/M0007.json
|
|
1166
|
+
- schemas/tlc/1.2.1/commands/M0008.json
|
|
1167
|
+
- schemas/tlc/1.2.1/commands/M0010.json
|
|
1168
|
+
- schemas/tlc/1.2.1/commands/M0011.json
|
|
1169
|
+
- schemas/tlc/1.2.1/commands/M0012.json
|
|
1170
|
+
- schemas/tlc/1.2.1/commands/M0013.json
|
|
1171
|
+
- schemas/tlc/1.2.1/commands/M0014.json
|
|
1172
|
+
- schemas/tlc/1.2.1/commands/M0015.json
|
|
1173
|
+
- schemas/tlc/1.2.1/commands/M0016.json
|
|
1174
|
+
- schemas/tlc/1.2.1/commands/M0017.json
|
|
1175
|
+
- schemas/tlc/1.2.1/commands/M0018.json
|
|
1176
|
+
- schemas/tlc/1.2.1/commands/M0019.json
|
|
1177
|
+
- schemas/tlc/1.2.1/commands/M0020.json
|
|
1178
|
+
- schemas/tlc/1.2.1/commands/M0021.json
|
|
1179
|
+
- schemas/tlc/1.2.1/commands/M0022.json
|
|
1180
|
+
- schemas/tlc/1.2.1/commands/M0023.json
|
|
1181
|
+
- schemas/tlc/1.2.1/commands/M0103.json
|
|
1182
|
+
- schemas/tlc/1.2.1/commands/M0104.json
|
|
1183
|
+
- schemas/tlc/1.2.1/commands/command_requests.json
|
|
1184
|
+
- schemas/tlc/1.2.1/commands/command_responses.json
|
|
1185
|
+
- schemas/tlc/1.2.1/commands/commands.json
|
|
1186
|
+
- schemas/tlc/1.2.1/defs/definitions.json
|
|
1187
|
+
- schemas/tlc/1.2.1/defs/guards.json
|
|
1188
|
+
- schemas/tlc/1.2.1/rsmp.json
|
|
1189
|
+
- schemas/tlc/1.2.1/statuses/S0001.json
|
|
1190
|
+
- schemas/tlc/1.2.1/statuses/S0002.json
|
|
1191
|
+
- schemas/tlc/1.2.1/statuses/S0003.json
|
|
1192
|
+
- schemas/tlc/1.2.1/statuses/S0004.json
|
|
1193
|
+
- schemas/tlc/1.2.1/statuses/S0005.json
|
|
1194
|
+
- schemas/tlc/1.2.1/statuses/S0006.json
|
|
1195
|
+
- schemas/tlc/1.2.1/statuses/S0007.json
|
|
1196
|
+
- schemas/tlc/1.2.1/statuses/S0008.json
|
|
1197
|
+
- schemas/tlc/1.2.1/statuses/S0009.json
|
|
1198
|
+
- schemas/tlc/1.2.1/statuses/S0010.json
|
|
1199
|
+
- schemas/tlc/1.2.1/statuses/S0011.json
|
|
1200
|
+
- schemas/tlc/1.2.1/statuses/S0012.json
|
|
1201
|
+
- schemas/tlc/1.2.1/statuses/S0013.json
|
|
1202
|
+
- schemas/tlc/1.2.1/statuses/S0014.json
|
|
1203
|
+
- schemas/tlc/1.2.1/statuses/S0015.json
|
|
1204
|
+
- schemas/tlc/1.2.1/statuses/S0016.json
|
|
1205
|
+
- schemas/tlc/1.2.1/statuses/S0017.json
|
|
1206
|
+
- schemas/tlc/1.2.1/statuses/S0018.json
|
|
1207
|
+
- schemas/tlc/1.2.1/statuses/S0019.json
|
|
1208
|
+
- schemas/tlc/1.2.1/statuses/S0020.json
|
|
1209
|
+
- schemas/tlc/1.2.1/statuses/S0021.json
|
|
1210
|
+
- schemas/tlc/1.2.1/statuses/S0022.json
|
|
1211
|
+
- schemas/tlc/1.2.1/statuses/S0023.json
|
|
1212
|
+
- schemas/tlc/1.2.1/statuses/S0024.json
|
|
1213
|
+
- schemas/tlc/1.2.1/statuses/S0025.json
|
|
1214
|
+
- schemas/tlc/1.2.1/statuses/S0026.json
|
|
1215
|
+
- schemas/tlc/1.2.1/statuses/S0027.json
|
|
1216
|
+
- schemas/tlc/1.2.1/statuses/S0028.json
|
|
1217
|
+
- schemas/tlc/1.2.1/statuses/S0029.json
|
|
1218
|
+
- schemas/tlc/1.2.1/statuses/S0030.json
|
|
1219
|
+
- schemas/tlc/1.2.1/statuses/S0031.json
|
|
1220
|
+
- schemas/tlc/1.2.1/statuses/S0032.json
|
|
1221
|
+
- schemas/tlc/1.2.1/statuses/S0033.json
|
|
1222
|
+
- schemas/tlc/1.2.1/statuses/S0034.json
|
|
1223
|
+
- schemas/tlc/1.2.1/statuses/S0035.json
|
|
1224
|
+
- schemas/tlc/1.2.1/statuses/S0091.json
|
|
1225
|
+
- schemas/tlc/1.2.1/statuses/S0092.json
|
|
1226
|
+
- schemas/tlc/1.2.1/statuses/S0095.json
|
|
1227
|
+
- schemas/tlc/1.2.1/statuses/S0096.json
|
|
1228
|
+
- schemas/tlc/1.2.1/statuses/S0097.json
|
|
1229
|
+
- schemas/tlc/1.2.1/statuses/S0098.json
|
|
1230
|
+
- schemas/tlc/1.2.1/statuses/S0201.json
|
|
1231
|
+
- schemas/tlc/1.2.1/statuses/S0202.json
|
|
1232
|
+
- schemas/tlc/1.2.1/statuses/S0203.json
|
|
1233
|
+
- schemas/tlc/1.2.1/statuses/S0204.json
|
|
1234
|
+
- schemas/tlc/1.2.1/statuses/S0205.json
|
|
1235
|
+
- schemas/tlc/1.2.1/statuses/S0206.json
|
|
1236
|
+
- schemas/tlc/1.2.1/statuses/S0207.json
|
|
1237
|
+
- schemas/tlc/1.2.1/statuses/S0208.json
|
|
1238
|
+
- schemas/tlc/1.2.1/statuses/statuses.json
|
|
1239
|
+
- schemas/tlc/1.2.1/sxl.yaml
|
|
1240
|
+
- schemas/tlc/defs/guards.json
|
|
245
1241
|
homepage: https://github.com/rsmp-nordic/rsmp
|
|
246
1242
|
licenses:
|
|
247
1243
|
- MIT
|