rsmp_schemer 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/.gitmodules +44 -0
- data/.rspec +1 -0
- data/CHANGELOG.md +7 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +46 -0
- data/LICENSE +7 -0
- data/README.md +54 -0
- data/Rakefile +20 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/lib/rsmp_schemer.rb +5 -0
- data/lib/rsmp_schemer/error.rb +16 -0
- data/lib/rsmp_schemer/schemer.rb +90 -0
- data/lib/rsmp_schemer/version.rb +7 -0
- data/rsmp_schemer.gemspec +47 -0
- data/schemas/core_3.1.2/.rspec +1 -0
- data/schemas/core_3.1.2/Gemfile +5 -0
- data/schemas/core_3.1.2/Gemfile.lock +37 -0
- data/schemas/core_3.1.2/LICENSE +7 -0
- data/schemas/core_3.1.2/README.md +70 -0
- data/schemas/core_3.1.2/examples/validate.rb +35 -0
- data/schemas/core_3.1.2/schema/core/aggregated_status.json +25 -0
- data/schemas/core_3.1.2/schema/core/alarm.json +55 -0
- data/schemas/core_3.1.2/schema/core/command_request.json +24 -0
- data/schemas/core_3.1.2/schema/core/command_response.json +34 -0
- data/schemas/core_3.1.2/schema/core/core.json +35 -0
- data/schemas/core_3.1.2/schema/core/definitions.json +63 -0
- data/schemas/core_3.1.2/schema/core/message_ack.json +11 -0
- data/schemas/core_3.1.2/schema/core/message_not_ack.json +15 -0
- data/schemas/core_3.1.2/schema/core/rsmp.json +124 -0
- data/schemas/core_3.1.2/schema/core/status.json +21 -0
- data/schemas/core_3.1.2/schema/core/status_request.json +5 -0
- data/schemas/core_3.1.2/schema/core/status_response.json +30 -0
- data/schemas/core_3.1.2/schema/core/status_subscribe.json +27 -0
- data/schemas/core_3.1.2/schema/core/status_unsubscribe.json +5 -0
- data/schemas/core_3.1.2/schema/core/status_update.json +30 -0
- data/schemas/core_3.1.2/schema/core/version.json +47 -0
- data/schemas/core_3.1.2/schema/core/watchdog.json +9 -0
- data/schemas/core_3.1.2/spec/core/aggregated_status_spec.rb +80 -0
- data/schemas/core_3.1.2/spec/core/alarm_spec.rb +298 -0
- data/schemas/core_3.1.2/spec/core/command_request_spec.rb +106 -0
- data/schemas/core_3.1.2/spec/core/command_response_spec.rb +102 -0
- data/schemas/core_3.1.2/spec/core/core_spec.rb +72 -0
- data/schemas/core_3.1.2/spec/core/message_ack.rb +28 -0
- data/schemas/core_3.1.2/spec/core/message_not_ack_spec.rb +55 -0
- data/schemas/core_3.1.2/spec/core/status_request_spec.rb +93 -0
- data/schemas/core_3.1.2/spec/core/status_response_spec.rb +126 -0
- data/schemas/core_3.1.2/spec/core/status_subscribe_spec.rb +122 -0
- data/schemas/core_3.1.2/spec/core/status_unsubscribe_spec.rb +101 -0
- data/schemas/core_3.1.2/spec/core/status_update_spec.rb +117 -0
- data/schemas/core_3.1.2/spec/core/version_spec.rb +149 -0
- data/schemas/core_3.1.2/spec/core/watchdog_spec.rb +37 -0
- data/schemas/core_3.1.2/spec/schemer_helper.rb +23 -0
- data/schemas/core_3.1.2/spec/spec_helper.rb +102 -0
- data/schemas/core_3.1.3/.rspec +1 -0
- data/schemas/core_3.1.3/Gemfile +5 -0
- data/schemas/core_3.1.3/Gemfile.lock +37 -0
- data/schemas/core_3.1.3/LICENSE +7 -0
- data/schemas/core_3.1.3/README.md +70 -0
- data/schemas/core_3.1.3/examples/validate.rb +32 -0
- data/schemas/core_3.1.3/schema/core/aggregated_status.json +25 -0
- data/schemas/core_3.1.3/schema/core/aggregated_status_request.json +9 -0
- data/schemas/core_3.1.3/schema/core/alarm.json +55 -0
- data/schemas/core_3.1.3/schema/core/command_request.json +24 -0
- data/schemas/core_3.1.3/schema/core/command_response.json +34 -0
- data/schemas/core_3.1.3/schema/core/core.json +36 -0
- data/schemas/core_3.1.3/schema/core/definitions.json +63 -0
- data/schemas/core_3.1.3/schema/core/message_ack.json +11 -0
- data/schemas/core_3.1.3/schema/core/message_not_ack.json +15 -0
- data/schemas/core_3.1.3/schema/core/rsmp.json +133 -0
- data/schemas/core_3.1.3/schema/core/status.json +21 -0
- data/schemas/core_3.1.3/schema/core/status_request.json +5 -0
- data/schemas/core_3.1.3/schema/core/status_response.json +30 -0
- data/schemas/core_3.1.3/schema/core/status_subscribe.json +27 -0
- data/schemas/core_3.1.3/schema/core/status_unsubscribe.json +5 -0
- data/schemas/core_3.1.3/schema/core/status_update.json +30 -0
- data/schemas/core_3.1.3/schema/core/version.json +47 -0
- data/schemas/core_3.1.3/schema/core/watchdog.json +9 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0001.json +7 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0002.json +7 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0003.json +7 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0004.json +7 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0005.json +7 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0006.json +7 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0007.json +7 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0008.json +19 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0009.json +7 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0101.json +7 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0201.json +20 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0202.json +20 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0301.json +49 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/A0302.json +59 -0
- data/schemas/core_3.1.3/schema/tlc/alarms/alarms.json +68 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0001.json +48 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0002.json +39 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0003.json +39 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0004.json +30 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0005.json +39 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0006.json +39 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0007.json +30 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0008.json +40 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0010.json +30 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0011.json +30 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0012.json +29 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0013.json +1 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0014.json +38 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0015.json +38 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0016.json +29 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0017.json +29 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0018.json +38 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0019.json +49 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0020.json +49 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0021.json +1 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0103.json +39 -0
- data/schemas/core_3.1.3/schema/tlc/commands/M0104.json +1 -0
- data/schemas/core_3.1.3/schema/tlc/commands/command_requests.json +7 -0
- data/schemas/core_3.1.3/schema/tlc/commands/command_responses.json +7 -0
- data/schemas/core_3.1.3/schema/tlc/commands/commands.json +97 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0001.json +45 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0002.json +17 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0003.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0004.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0005.json +18 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0006.json +27 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0007.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0008.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0009.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0010.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0011.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0012.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0013.json +27 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0014.json +17 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0015.json +17 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0016.json +17 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0017.json +17 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0018.json +17 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0019.json +17 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0020.json +27 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0021.json +18 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0022.json +17 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0023.json +18 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0024.json +18 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0025.json +80 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0026.json +18 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0027.json +18 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0028.json +18 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0029.json +17 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0030.json +1 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0031.json +1 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0091.json +27 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0092.json +27 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0095.json +17 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0096.json +68 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0097.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0201.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0202.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0203.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0204.json +98 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0205.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0206.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0207.json +26 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/S0208.json +98 -0
- data/schemas/core_3.1.3/schema/tlc/statuses/statuses.json +181 -0
- data/schemas/core_3.1.3/schema/tlc/sxl.json +24 -0
- data/schemas/core_3.1.3/spec/core/aggregated_status_spec.rb +80 -0
- data/schemas/core_3.1.3/spec/core/alarm_spec.rb +300 -0
- data/schemas/core_3.1.3/spec/core/command_request_spec.rb +109 -0
- data/schemas/core_3.1.3/spec/core/command_response_spec.rb +144 -0
- data/schemas/core_3.1.3/spec/core/core_spec.rb +72 -0
- data/schemas/core_3.1.3/spec/core/message_ack.rb +28 -0
- data/schemas/core_3.1.3/spec/core/message_not_ack_spec.rb +55 -0
- data/schemas/core_3.1.3/spec/core/status_request_spec.rb +97 -0
- data/schemas/core_3.1.3/spec/core/status_response_spec.rb +121 -0
- data/schemas/core_3.1.3/spec/core/status_subscribe_spec.rb +126 -0
- data/schemas/core_3.1.3/spec/core/status_unsubscribe_spec.rb +105 -0
- data/schemas/core_3.1.3/spec/core/status_update_spec.rb +121 -0
- data/schemas/core_3.1.3/spec/core/version_spec.rb +149 -0
- data/schemas/core_3.1.3/spec/core/watchdog_spec.rb +37 -0
- data/schemas/core_3.1.3/spec/schemer_helper.rb +21 -0
- data/schemas/core_3.1.3/spec/spec_helper.rb +102 -0
- data/schemas/core_3.1.3/spec/tlc/M0001_spec.rb +67 -0
- data/schemas/core_3.1.3/spec/tlc/S0007_spec.rb +233 -0
- data/schemas/core_3.1.4/.rspec +1 -0
- data/schemas/core_3.1.4/Gemfile +5 -0
- data/schemas/core_3.1.4/Gemfile.lock +37 -0
- data/schemas/core_3.1.4/LICENSE +7 -0
- data/schemas/core_3.1.4/README.md +70 -0
- data/schemas/core_3.1.4/examples/validate.rb +35 -0
- data/schemas/core_3.1.4/schema/core/aggregated_status.json +25 -0
- data/schemas/core_3.1.4/schema/core/alarm.json +55 -0
- data/schemas/core_3.1.4/schema/core/command_request.json +24 -0
- data/schemas/core_3.1.4/schema/core/command_response.json +34 -0
- data/schemas/core_3.1.4/schema/core/core.json +35 -0
- data/schemas/core_3.1.4/schema/core/definitions.json +63 -0
- data/schemas/core_3.1.4/schema/core/message_ack.json +11 -0
- data/schemas/core_3.1.4/schema/core/message_not_ack.json +15 -0
- data/schemas/core_3.1.4/schema/core/rsmp.json +124 -0
- data/schemas/core_3.1.4/schema/core/status.json +21 -0
- data/schemas/core_3.1.4/schema/core/status_request.json +5 -0
- data/schemas/core_3.1.4/schema/core/status_response.json +30 -0
- data/schemas/core_3.1.4/schema/core/status_subscribe.json +27 -0
- data/schemas/core_3.1.4/schema/core/status_unsubscribe.json +5 -0
- data/schemas/core_3.1.4/schema/core/status_update.json +30 -0
- data/schemas/core_3.1.4/schema/core/version.json +47 -0
- data/schemas/core_3.1.4/schema/core/watchdog.json +9 -0
- data/schemas/core_3.1.4/spec/core/aggregated_status_spec.rb +80 -0
- data/schemas/core_3.1.4/spec/core/alarm_request_spec.rb +72 -0
- data/schemas/core_3.1.4/spec/core/alarm_spec.rb +298 -0
- data/schemas/core_3.1.4/spec/core/command_request_spec.rb +106 -0
- data/schemas/core_3.1.4/spec/core/command_response_spec.rb +102 -0
- data/schemas/core_3.1.4/spec/core/core_spec.rb +72 -0
- data/schemas/core_3.1.4/spec/core/message_ack.rb +28 -0
- data/schemas/core_3.1.4/spec/core/message_not_ack_spec.rb +55 -0
- data/schemas/core_3.1.4/spec/core/status_request_spec.rb +93 -0
- data/schemas/core_3.1.4/spec/core/status_response_spec.rb +126 -0
- data/schemas/core_3.1.4/spec/core/status_subscribe_spec.rb +122 -0
- data/schemas/core_3.1.4/spec/core/status_unsubscribe_spec.rb +101 -0
- data/schemas/core_3.1.4/spec/core/status_update_spec.rb +117 -0
- data/schemas/core_3.1.4/spec/core/version_spec.rb +149 -0
- data/schemas/core_3.1.4/spec/core/watchdog_spec.rb +37 -0
- data/schemas/core_3.1.4/spec/schemer_helper.rb +23 -0
- data/schemas/core_3.1.4/spec/spec_helper.rb +102 -0
- data/schemas/core_3.1.5/.rspec +1 -0
- data/schemas/core_3.1.5/Gemfile +5 -0
- data/schemas/core_3.1.5/Gemfile.lock +37 -0
- data/schemas/core_3.1.5/LICENSE +7 -0
- data/schemas/core_3.1.5/README.md +70 -0
- data/schemas/core_3.1.5/examples/validate.rb +35 -0
- data/schemas/core_3.1.5/schema/core/aggregated_status.json +25 -0
- data/schemas/core_3.1.5/schema/core/aggregated_status_request.json +9 -0
- data/schemas/core_3.1.5/schema/core/alarm.json +55 -0
- data/schemas/core_3.1.5/schema/core/command_request.json +24 -0
- data/schemas/core_3.1.5/schema/core/command_response.json +34 -0
- data/schemas/core_3.1.5/schema/core/core.json +36 -0
- data/schemas/core_3.1.5/schema/core/definitions.json +63 -0
- data/schemas/core_3.1.5/schema/core/message_ack.json +11 -0
- data/schemas/core_3.1.5/schema/core/message_not_ack.json +15 -0
- data/schemas/core_3.1.5/schema/core/rsmp.json +133 -0
- data/schemas/core_3.1.5/schema/core/status.json +21 -0
- data/schemas/core_3.1.5/schema/core/status_request.json +5 -0
- data/schemas/core_3.1.5/schema/core/status_response.json +30 -0
- data/schemas/core_3.1.5/schema/core/status_subscribe.json +27 -0
- data/schemas/core_3.1.5/schema/core/status_unsubscribe.json +5 -0
- data/schemas/core_3.1.5/schema/core/status_update.json +30 -0
- data/schemas/core_3.1.5/schema/core/version.json +47 -0
- data/schemas/core_3.1.5/schema/core/watchdog.json +9 -0
- data/schemas/core_3.1.5/spec/core/aggregated_status_spec.rb +80 -0
- data/schemas/core_3.1.5/spec/core/alarm_request_spec.rb +72 -0
- data/schemas/core_3.1.5/spec/core/alarm_spec.rb +298 -0
- data/schemas/core_3.1.5/spec/core/command_request_spec.rb +106 -0
- data/schemas/core_3.1.5/spec/core/command_response_spec.rb +102 -0
- data/schemas/core_3.1.5/spec/core/core_spec.rb +72 -0
- data/schemas/core_3.1.5/spec/core/message_ack.rb +28 -0
- data/schemas/core_3.1.5/spec/core/message_not_ack_spec.rb +55 -0
- data/schemas/core_3.1.5/spec/core/status_request_spec.rb +93 -0
- data/schemas/core_3.1.5/spec/core/status_response_spec.rb +126 -0
- data/schemas/core_3.1.5/spec/core/status_subscribe_spec.rb +122 -0
- data/schemas/core_3.1.5/spec/core/status_unsubscribe_spec.rb +101 -0
- data/schemas/core_3.1.5/spec/core/status_update_spec.rb +117 -0
- data/schemas/core_3.1.5/spec/core/version_spec.rb +149 -0
- data/schemas/core_3.1.5/spec/core/watchdog_spec.rb +37 -0
- data/schemas/core_3.1.5/spec/schemer_helper.rb +23 -0
- data/schemas/core_3.1.5/spec/spec_helper.rb +102 -0
- data/schemas/tlc_1.0.10/.gitignore +1 -0
- data/schemas/tlc_1.0.10/.rspec +1 -0
- data/schemas/tlc_1.0.10/Gemfile +5 -0
- data/schemas/tlc_1.0.10/Gemfile.lock +37 -0
- data/schemas/tlc_1.0.10/LICENSE +7 -0
- data/schemas/tlc_1.0.10/README.md +70 -0
- data/schemas/tlc_1.0.10/schema/core/definitions.json +63 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0001.json +7 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0002.json +7 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0003.json +7 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0004.json +7 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0005.json +7 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0006.json +7 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0007.json +7 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0008.json +34 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0009.json +7 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0101.json +7 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0201.json +39 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0202.json +39 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0301.json +105 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/A0302.json +131 -0
- data/schemas/tlc_1.0.10/schema/tlc/alarms/alarms.json +254 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0001.json +105 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0002.json +79 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0003.json +79 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0004.json +58 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0005.json +79 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0006.json +79 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0007.json +58 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0008.json +79 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0010.json +58 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0011.json +58 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0012.json +58 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0013.json +58 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0103.json +82 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/M0104.json +163 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/command_requests.json +7 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/command_responses.json +7 -0
- data/schemas/tlc_1.0.10/schema/tlc/commands/commands.json +366 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0001.json +98 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0002.json +34 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0003.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0004.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0005.json +34 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0006.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0007.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0008.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0009.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0010.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0011.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0012.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0013.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0014.json +34 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0015.json +34 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0016.json +34 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0017.json +34 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0018.json +34 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0019.json +34 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0020.json +61 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0021.json +35 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0091.json +61 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0092.json +61 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0095.json +34 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0096.json +139 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0201.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0202.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0203.json +55 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/S0204.json +223 -0
- data/schemas/tlc_1.0.10/schema/tlc/statuses/statuses.json +738 -0
- data/schemas/tlc_1.0.10/schema/tlc/sxl.json +71 -0
- data/schemas/tlc_1.0.10/spec/schemer_helper.rb +21 -0
- data/schemas/tlc_1.0.10/spec/spec_helper.rb +102 -0
- data/schemas/tlc_1.0.10/spec/tlc/M0001_spec.rb +67 -0
- data/schemas/tlc_1.0.10/spec/tlc/S0007_spec.rb +159 -0
- data/schemas/tlc_1.0.13/.gitignore +1 -0
- data/schemas/tlc_1.0.13/.rspec +1 -0
- data/schemas/tlc_1.0.13/Gemfile +5 -0
- data/schemas/tlc_1.0.13/Gemfile.lock +37 -0
- data/schemas/tlc_1.0.13/LICENSE +7 -0
- data/schemas/tlc_1.0.13/README.md +70 -0
- data/schemas/tlc_1.0.13/schema/core/definitions.json +63 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0001.json +7 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0002.json +7 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0003.json +7 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0004.json +7 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0005.json +7 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0006.json +7 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0007.json +7 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0008.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0009.json +7 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0101.json +7 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0201.json +39 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0202.json +39 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0301.json +105 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/A0302.json +131 -0
- data/schemas/tlc_1.0.13/schema/tlc/alarms/alarms.json +254 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0001.json +105 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0002.json +79 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0003.json +79 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0004.json +58 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0005.json +79 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0006.json +79 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0007.json +58 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0008.json +79 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0010.json +58 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0011.json +58 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0012.json +58 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0013.json +58 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0014.json +79 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0015.json +79 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0016.json +58 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0017.json +58 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0018.json +79 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0019.json +100 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0103.json +82 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/M0104.json +163 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/command_requests.json +7 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/command_responses.json +7 -0
- data/schemas/tlc_1.0.13/schema/tlc/commands/commands.json +366 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0001.json +98 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0002.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0003.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0004.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0005.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0006.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0007.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0008.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0009.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0010.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0011.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0012.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0013.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0014.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0015.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0016.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0017.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0018.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0019.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0020.json +61 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0021.json +35 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0022.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0023.json +35 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0024.json +35 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0025.json +181 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0026.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0027.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0028.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0029.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0091.json +61 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0092.json +61 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0095.json +34 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0096.json +139 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0201.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0202.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0203.json +55 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/S0204.json +223 -0
- data/schemas/tlc_1.0.13/schema/tlc/statuses/statuses.json +738 -0
- data/schemas/tlc_1.0.13/schema/tlc/sxl.json +71 -0
- data/schemas/tlc_1.0.13/spec/schemer_helper.rb +21 -0
- data/schemas/tlc_1.0.13/spec/spec_helper.rb +102 -0
- data/schemas/tlc_1.0.13/spec/tlc/M0001_spec.rb +67 -0
- data/schemas/tlc_1.0.13/spec/tlc/S0007_spec.rb +159 -0
- data/schemas/tlc_1.0.14/.gitignore +1 -0
- data/schemas/tlc_1.0.14/.rspec +1 -0
- data/schemas/tlc_1.0.14/Gemfile +5 -0
- data/schemas/tlc_1.0.14/Gemfile.lock +37 -0
- data/schemas/tlc_1.0.14/LICENSE +7 -0
- data/schemas/tlc_1.0.14/README.md +70 -0
- data/schemas/tlc_1.0.14/schema/core/definitions.json +63 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0001.json +7 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0002.json +7 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0003.json +7 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0004.json +7 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0005.json +7 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0006.json +7 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0007.json +7 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0008.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0009.json +7 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0101.json +7 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0201.json +39 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0202.json +39 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0301.json +105 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/A0302.json +131 -0
- data/schemas/tlc_1.0.14/schema/tlc/alarms/alarms.json +254 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0001.json +105 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0002.json +79 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0003.json +79 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0004.json +58 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0005.json +79 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0006.json +79 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0007.json +58 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0008.json +79 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0010.json +58 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0011.json +58 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0012.json +58 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0013.json +58 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0014.json +79 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0015.json +79 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0016.json +58 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0017.json +58 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0018.json +79 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0019.json +100 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0103.json +82 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/M0104.json +163 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/command_requests.json +7 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/command_responses.json +7 -0
- data/schemas/tlc_1.0.14/schema/tlc/commands/commands.json +366 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0001.json +98 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0002.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0003.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0004.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0005.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0006.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0007.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0008.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0009.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0010.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0011.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0012.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0013.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0014.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0015.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0016.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0017.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0018.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0019.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0020.json +61 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0021.json +35 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0022.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0023.json +35 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0024.json +35 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0025.json +181 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0026.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0027.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0028.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0029.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0091.json +61 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0092.json +61 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0095.json +34 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0096.json +139 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0201.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0202.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0203.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0204.json +223 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0205.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0206.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0207.json +55 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/S0208.json +223 -0
- data/schemas/tlc_1.0.14/schema/tlc/statuses/statuses.json +738 -0
- data/schemas/tlc_1.0.14/schema/tlc/sxl.json +71 -0
- data/schemas/tlc_1.0.14/spec/schemer_helper.rb +21 -0
- data/schemas/tlc_1.0.14/spec/spec_helper.rb +102 -0
- data/schemas/tlc_1.0.14/spec/tlc/M0001_spec.rb +67 -0
- data/schemas/tlc_1.0.14/spec/tlc/S0007_spec.rb +159 -0
- data/schemas/tlc_1.0.15/.gitignore +1 -0
- data/schemas/tlc_1.0.15/.rspec +1 -0
- data/schemas/tlc_1.0.15/Gemfile +5 -0
- data/schemas/tlc_1.0.15/Gemfile.lock +37 -0
- data/schemas/tlc_1.0.15/LICENSE +7 -0
- data/schemas/tlc_1.0.15/README.md +70 -0
- data/schemas/tlc_1.0.15/schema/core/definitions.json +63 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0001.json +7 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0002.json +7 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0003.json +7 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0004.json +7 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0005.json +7 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0006.json +7 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0007.json +7 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0008.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0009.json +7 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0010.json +7 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0101.json +7 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0201.json +39 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0202.json +39 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0301.json +105 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/A0302.json +131 -0
- data/schemas/tlc_1.0.15/schema/tlc/alarms/alarms.json +254 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0001.json +105 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0002.json +79 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0003.json +79 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0004.json +58 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0005.json +79 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0006.json +79 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0007.json +58 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0008.json +79 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0010.json +58 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0011.json +58 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0012.json +58 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0013.json +58 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0014.json +79 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0015.json +79 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0016.json +58 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0017.json +58 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0018.json +79 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0019.json +100 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0020.json +100 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0021.json +58 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0103.json +82 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/M0104.json +163 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/command_requests.json +7 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/command_responses.json +7 -0
- data/schemas/tlc_1.0.15/schema/tlc/commands/commands.json +366 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0001.json +98 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0002.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0003.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0004.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0005.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0006.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0007.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0008.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0009.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0010.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0011.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0012.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0013.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0014.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0015.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0016.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0017.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0018.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0019.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0020.json +61 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0021.json +35 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0022.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0023.json +35 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0024.json +35 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0025.json +181 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0026.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0027.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0028.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0029.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0030.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0031.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0091.json +58 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0092.json +58 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0095.json +34 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0096.json +139 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0097.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0098.json +76 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0201.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0202.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0203.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0204.json +223 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0205.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0206.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0207.json +55 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/S0208.json +223 -0
- data/schemas/tlc_1.0.15/schema/tlc/statuses/statuses.json +738 -0
- data/schemas/tlc_1.0.15/schema/tlc/sxl.json +71 -0
- data/schemas/tlc_1.0.15/spec/schemer_helper.rb +21 -0
- data/schemas/tlc_1.0.15/spec/spec_helper.rb +102 -0
- data/schemas/tlc_1.0.15/spec/tlc/M0001_spec.rb +67 -0
- data/schemas/tlc_1.0.15/spec/tlc/S0007_spec.rb +159 -0
- data/schemas/tlc_1.0.7/.gitignore +1 -0
- data/schemas/tlc_1.0.7/.rspec +1 -0
- data/schemas/tlc_1.0.7/Gemfile +5 -0
- data/schemas/tlc_1.0.7/Gemfile.lock +37 -0
- data/schemas/tlc_1.0.7/LICENSE +7 -0
- data/schemas/tlc_1.0.7/README.md +70 -0
- data/schemas/tlc_1.0.7/schema/core/definitions.json +63 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0001.json +7 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0002.json +7 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0003.json +7 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0004.json +7 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0005.json +7 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0006.json +7 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0007.json +7 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0008.json +34 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0009.json +7 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0101.json +7 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0201.json +39 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0202.json +39 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0301.json +105 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/A0302.json +131 -0
- data/schemas/tlc_1.0.7/schema/tlc/alarms/alarms.json +254 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/M0001.json +105 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/M0002.json +79 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/M0003.json +79 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/M0004.json +58 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/M0005.json +79 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/M0006.json +79 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/M0007.json +58 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/M0008.json +79 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/M0010.json +58 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/M0011.json +58 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/M0103.json +82 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/M0104.json +163 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/command_requests.json +7 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/command_responses.json +7 -0
- data/schemas/tlc_1.0.7/schema/tlc/commands/commands.json +366 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0001.json +98 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0002.json +34 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0003.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0004.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0005.json +34 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0006.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0007.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0008.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0009.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0010.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0011.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0012.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0013.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0014.json +34 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0015.json +34 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0016.json +34 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0017.json +34 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0018.json +34 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0019.json +34 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0020.json +61 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0021.json +35 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0091.json +61 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0092.json +61 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0095.json +34 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0096.json +139 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0201.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0202.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0203.json +55 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/S0204.json +223 -0
- data/schemas/tlc_1.0.7/schema/tlc/statuses/statuses.json +738 -0
- data/schemas/tlc_1.0.7/schema/tlc/sxl.json +71 -0
- data/schemas/tlc_1.0.7/spec/schemer_helper.rb +21 -0
- data/schemas/tlc_1.0.7/spec/spec_helper.rb +102 -0
- data/schemas/tlc_1.0.7/spec/tlc/M0001_spec.rb +67 -0
- data/schemas/tlc_1.0.7/spec/tlc/S0007_spec.rb +159 -0
- data/schemas/tlc_1.0.8/.gitignore +1 -0
- data/schemas/tlc_1.0.8/.rspec +1 -0
- data/schemas/tlc_1.0.8/Gemfile +5 -0
- data/schemas/tlc_1.0.8/Gemfile.lock +37 -0
- data/schemas/tlc_1.0.8/LICENSE +7 -0
- data/schemas/tlc_1.0.8/README.md +70 -0
- data/schemas/tlc_1.0.8/schema/core/definitions.json +63 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0001.json +7 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0002.json +7 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0003.json +7 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0004.json +7 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0005.json +7 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0006.json +7 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0007.json +7 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0008.json +34 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0009.json +7 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0101.json +7 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0201.json +39 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0202.json +39 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0301.json +105 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/A0302.json +131 -0
- data/schemas/tlc_1.0.8/schema/tlc/alarms/alarms.json +254 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0001.json +105 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0002.json +79 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0003.json +79 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0004.json +58 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0005.json +79 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0006.json +79 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0007.json +58 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0008.json +79 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0010.json +58 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0011.json +58 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0012.json +58 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0013.json +58 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0103.json +82 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/M0104.json +163 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/command_requests.json +7 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/command_responses.json +7 -0
- data/schemas/tlc_1.0.8/schema/tlc/commands/commands.json +366 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0001.json +98 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0002.json +34 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0003.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0004.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0005.json +34 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0006.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0007.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0008.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0009.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0010.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0011.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0012.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0013.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0014.json +34 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0015.json +34 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0016.json +34 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0017.json +34 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0018.json +34 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0019.json +34 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0020.json +61 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0021.json +35 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0091.json +61 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0092.json +61 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0095.json +34 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0096.json +139 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0201.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0202.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0203.json +55 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/S0204.json +223 -0
- data/schemas/tlc_1.0.8/schema/tlc/statuses/statuses.json +738 -0
- data/schemas/tlc_1.0.8/schema/tlc/sxl.json +71 -0
- data/schemas/tlc_1.0.8/spec/schemer_helper.rb +21 -0
- data/schemas/tlc_1.0.8/spec/spec_helper.rb +102 -0
- data/schemas/tlc_1.0.8/spec/tlc/M0001_spec.rb +67 -0
- data/schemas/tlc_1.0.8/spec/tlc/S0007_spec.rb +159 -0
- data/schemas/tlc_1.0.9/.gitignore +1 -0
- data/schemas/tlc_1.0.9/.rspec +1 -0
- data/schemas/tlc_1.0.9/Gemfile +5 -0
- data/schemas/tlc_1.0.9/Gemfile.lock +37 -0
- data/schemas/tlc_1.0.9/LICENSE +7 -0
- data/schemas/tlc_1.0.9/README.md +70 -0
- data/schemas/tlc_1.0.9/schema/core/definitions.json +63 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0001.json +7 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0002.json +7 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0003.json +7 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0004.json +7 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0005.json +7 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0006.json +7 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0007.json +7 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0008.json +34 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0009.json +7 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0101.json +7 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0201.json +39 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0202.json +39 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0301.json +105 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/A0302.json +131 -0
- data/schemas/tlc_1.0.9/schema/tlc/alarms/alarms.json +254 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0001.json +105 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0002.json +79 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0003.json +79 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0004.json +58 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0005.json +79 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0006.json +79 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0007.json +58 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0008.json +79 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0010.json +58 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0011.json +58 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0012.json +58 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0013.json +58 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0103.json +82 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/M0104.json +163 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/command_requests.json +7 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/command_responses.json +7 -0
- data/schemas/tlc_1.0.9/schema/tlc/commands/commands.json +366 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0001.json +98 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0002.json +34 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0003.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0004.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0005.json +34 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0006.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0007.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0008.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0009.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0010.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0011.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0012.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0013.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0014.json +34 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0015.json +34 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0016.json +34 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0017.json +34 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0018.json +34 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0019.json +34 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0020.json +61 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0021.json +35 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0091.json +61 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0092.json +61 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0095.json +34 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0096.json +139 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0201.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0202.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0203.json +55 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/S0204.json +223 -0
- data/schemas/tlc_1.0.9/schema/tlc/statuses/statuses.json +738 -0
- data/schemas/tlc_1.0.9/schema/tlc/sxl.json +71 -0
- data/schemas/tlc_1.0.9/spec/schemer_helper.rb +21 -0
- data/schemas/tlc_1.0.9/spec/spec_helper.rb +102 -0
- data/schemas/tlc_1.0.9/spec/tlc/M0001_spec.rb +67 -0
- data/schemas/tlc_1.0.9/spec/tlc/S0007_spec.rb +159 -0
- metadata +939 -0
@@ -0,0 +1,71 @@
|
|
1
|
+
{
|
2
|
+
"description" : "A schema validatating message against the RSMP SXL for Traffic Light Controllers",
|
3
|
+
"allOf" : [
|
4
|
+
{
|
5
|
+
"if" : {
|
6
|
+
"required" : [
|
7
|
+
"type"
|
8
|
+
],
|
9
|
+
"properties" : {
|
10
|
+
"type" : {
|
11
|
+
"const" : "CommandRequest"
|
12
|
+
}
|
13
|
+
}
|
14
|
+
},
|
15
|
+
"then" : {
|
16
|
+
"$ref" : "commands/command_requests.json"
|
17
|
+
}
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"if" : {
|
21
|
+
"required" : [
|
22
|
+
"type"
|
23
|
+
],
|
24
|
+
"properties" : {
|
25
|
+
"type" : {
|
26
|
+
"const" : "CommandResponse"
|
27
|
+
}
|
28
|
+
}
|
29
|
+
},
|
30
|
+
"then" : {
|
31
|
+
"$ref" : "commands/command_responses.json"
|
32
|
+
}
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"if" : {
|
36
|
+
"required" : [
|
37
|
+
"type"
|
38
|
+
],
|
39
|
+
"properties" : {
|
40
|
+
"type" : {
|
41
|
+
"enum" : [
|
42
|
+
"StatusRequest",
|
43
|
+
"StatusResponse",
|
44
|
+
"StatusSubscribe",
|
45
|
+
"StatusUnsubscribe",
|
46
|
+
"StatusUpdate"
|
47
|
+
]
|
48
|
+
}
|
49
|
+
}
|
50
|
+
},
|
51
|
+
"then" : {
|
52
|
+
"$ref" : "statuses/statuses.json"
|
53
|
+
}
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"if" : {
|
57
|
+
"required" : [
|
58
|
+
"type"
|
59
|
+
],
|
60
|
+
"properties" : {
|
61
|
+
"type" : {
|
62
|
+
"const" : "Alarm"
|
63
|
+
}
|
64
|
+
}
|
65
|
+
},
|
66
|
+
"then" : {
|
67
|
+
"$ref" : "alarms/alarms.json"
|
68
|
+
}
|
69
|
+
}
|
70
|
+
]
|
71
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'json_schemer'
|
2
|
+
require 'pp'
|
3
|
+
|
4
|
+
schema = Pathname.new('schema/tlc/sxl.json')
|
5
|
+
$schemer = JSONSchemer.schema(schema)
|
6
|
+
|
7
|
+
def validate json
|
8
|
+
if $schemer.valid? json
|
9
|
+
nil
|
10
|
+
else
|
11
|
+
errors = []
|
12
|
+
begin
|
13
|
+
$schemer.validate(json).each do |item|
|
14
|
+
errors ||= []
|
15
|
+
errors << [item['data_pointer'],item['type'],item['details']].compact
|
16
|
+
end
|
17
|
+
rescue
|
18
|
+
end
|
19
|
+
errors
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,102 @@
|
|
1
|
+
require_relative 'schemer_helper'
|
2
|
+
|
3
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
4
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
5
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
6
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
7
|
+
# files.
|
8
|
+
#
|
9
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
10
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
11
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
12
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
13
|
+
# a separate helper file that requires the additional dependencies and performs
|
14
|
+
# the additional setup, and require it from the spec files that actually need
|
15
|
+
# it.
|
16
|
+
#
|
17
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
18
|
+
RSpec.configure do |config|
|
19
|
+
# rspec-expectations config goes here. You can use an alternate
|
20
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
21
|
+
# assertions if you prefer.
|
22
|
+
config.expect_with :rspec do |expectations|
|
23
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
24
|
+
# and `failure_message` of custom matchers include text for helper methods
|
25
|
+
# defined using `chain`, e.g.:
|
26
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
27
|
+
# # => "be bigger than 2 and smaller than 4"
|
28
|
+
# ...rather than:
|
29
|
+
# # => "be bigger than 2"
|
30
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
31
|
+
end
|
32
|
+
|
33
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
34
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
35
|
+
config.mock_with :rspec do |mocks|
|
36
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
37
|
+
# a real object. This is generally recommended, and will default to
|
38
|
+
# `true` in RSpec 4.
|
39
|
+
mocks.verify_partial_doubles = true
|
40
|
+
end
|
41
|
+
|
42
|
+
# This option will default to `:apply_to_host_groups` in RSpec 4 (and will
|
43
|
+
# have no way to turn it off -- the option exists only for backwards
|
44
|
+
# compatibility in RSpec 3). It causes shared context metadata to be
|
45
|
+
# inherited by the metadata hash of host groups and examples, rather than
|
46
|
+
# triggering implicit auto-inclusion in groups with matching metadata.
|
47
|
+
config.shared_context_metadata_behavior = :apply_to_host_groups
|
48
|
+
|
49
|
+
# The settings below are suggested to provide a good initial experience
|
50
|
+
# with RSpec, but feel free to customize to your heart's content.
|
51
|
+
=begin
|
52
|
+
# This allows you to limit a spec run to individual examples or groups
|
53
|
+
# you care about by tagging them with `:focus` metadata. When nothing
|
54
|
+
# is tagged with `:focus`, all examples get run. RSpec also provides
|
55
|
+
# aliases for `it`, `describe`, and `context` that include `:focus`
|
56
|
+
# metadata: `fit`, `fdescribe` and `fcontext`, respectively.
|
57
|
+
config.filter_run_when_matching :focus
|
58
|
+
|
59
|
+
# Allows RSpec to persist some state between runs in order to support
|
60
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
61
|
+
# you configure your source control system to ignore this file.
|
62
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
63
|
+
|
64
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
65
|
+
# recommended. For more details, see:
|
66
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
67
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
68
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
69
|
+
config.disable_monkey_patching!
|
70
|
+
|
71
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
72
|
+
# be too noisy due to issues in dependencies.
|
73
|
+
config.warnings = true
|
74
|
+
|
75
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
76
|
+
# file, and it's useful to allow more verbose output when running an
|
77
|
+
# individual spec file.
|
78
|
+
if config.files_to_run.one?
|
79
|
+
# Use the documentation formatter for detailed output,
|
80
|
+
# unless a formatter has already been configured
|
81
|
+
# (e.g. via a command-line flag).
|
82
|
+
config.default_formatter = "doc"
|
83
|
+
end
|
84
|
+
|
85
|
+
# Print the 10 slowest examples and example groups at the
|
86
|
+
# end of the spec run, to help surface which specs are running
|
87
|
+
# particularly slow.
|
88
|
+
config.profile_examples = 10
|
89
|
+
|
90
|
+
# Run specs in random order to surface order dependencies. If you find an
|
91
|
+
# order dependency and want to debug it, you can fix the order by providing
|
92
|
+
# the seed, which is printed after each run.
|
93
|
+
# --seed 1234
|
94
|
+
config.order = :random
|
95
|
+
|
96
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
97
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
98
|
+
# test failures related to randomization by passing the same `--seed` value
|
99
|
+
# as the one that triggered the failure.
|
100
|
+
Kernel.srand config.seed
|
101
|
+
=end
|
102
|
+
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
RSpec.describe "Traffic Light Controller RSMP SXL Schema validation" do
|
2
|
+
let(:message) {{
|
3
|
+
"mType" => "rSMsg",
|
4
|
+
"mId" => "4173c2c8-a933-43cb-9425-66d4613731ed",
|
5
|
+
"type" => "CommandRequest",
|
6
|
+
"siteId" => [
|
7
|
+
{ "sId" => "RN+SI0001" }
|
8
|
+
],
|
9
|
+
"cId" => "O+14439=481WA001",
|
10
|
+
"arg" => [
|
11
|
+
{
|
12
|
+
"cCI" => "M0001",
|
13
|
+
"n" => "status",
|
14
|
+
"cO" => "setValue",
|
15
|
+
"v" => "YellowFlash"
|
16
|
+
}
|
17
|
+
]
|
18
|
+
}}
|
19
|
+
|
20
|
+
it 'accepts valid command' do
|
21
|
+
expect( validate(message) ).to be_nil
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'catches bad value' do
|
25
|
+
invalid = message.dup
|
26
|
+
invalid["arg"].first['v'] = 'bad'
|
27
|
+
expect( validate(invalid) ).to eq([
|
28
|
+
["/arg/0/v", "enum"]
|
29
|
+
])
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'catches bad name' do
|
33
|
+
invalid = message.dup
|
34
|
+
invalid["arg"].first['n'] = 'bad'
|
35
|
+
expect( validate(invalid) ).to eq([
|
36
|
+
["/arg/0/n", "enum"]
|
37
|
+
])
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'catches bad status values' do
|
41
|
+
invalid = message.dup
|
42
|
+
invalid["arg"].first['n'] = 'status'
|
43
|
+
invalid["arg"].first['v'] = 'bad'
|
44
|
+
expect( validate(invalid) ).to eq([
|
45
|
+
["/arg/0/v", "enum"]
|
46
|
+
])
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'catches bad timeout values' do
|
50
|
+
invalid = message.dup
|
51
|
+
invalid["arg"].first['n'] = 'timeout'
|
52
|
+
invalid["arg"].first['v'] = 'bad'
|
53
|
+
expect( validate(invalid) ).to eq([
|
54
|
+
["/arg/0/v", "pattern"]
|
55
|
+
])
|
56
|
+
end
|
57
|
+
|
58
|
+
it 'catches bad intersection values' do
|
59
|
+
invalid = message.dup
|
60
|
+
invalid["arg"].first['n'] = 'intersection'
|
61
|
+
invalid["arg"].first['v'] = 'bad'
|
62
|
+
expect( validate(invalid) ).to eq([
|
63
|
+
["/arg/0/v", "pattern"]
|
64
|
+
])
|
65
|
+
end
|
66
|
+
|
67
|
+
end
|
@@ -0,0 +1,159 @@
|
|
1
|
+
RSpec.describe "Traffic Light Controller RSMP SXL Schema validation" do
|
2
|
+
let(:message) {{
|
3
|
+
"mType" => "rSMsg",
|
4
|
+
"mId" => "4173c2c8-a933-43cb-9425-66d4613731ed",
|
5
|
+
"type" => "StatusResponse",
|
6
|
+
"cId" => "O+14439=481WA001",
|
7
|
+
"sTs" => "2015-06-08T09:15:18.266Z",
|
8
|
+
"sS" => [
|
9
|
+
{ "sCI" => "S0007", "n" => "intersection", "s" => "1,2,3", "q" => "recent" },
|
10
|
+
{ "sCI" => "S0007", "n" => "status", "s" => "True,False,True", "q" => "recent" }
|
11
|
+
]
|
12
|
+
}}
|
13
|
+
|
14
|
+
it 'accepts valid status request with a single intersection' do
|
15
|
+
message["sS"] = [
|
16
|
+
{ "sCI" => "S0007", "n" => "intersection", "s" => "0", "q" => "recent" },
|
17
|
+
{ "sCI" => "S0007", "n" => "status", "s" => "True", "q" => "recent" }
|
18
|
+
]
|
19
|
+
expect( validate(message) ).to be_nil
|
20
|
+
|
21
|
+
message["sS"] = [
|
22
|
+
{ "sCI" => "S0007", "n" => "intersection", "s" => "0", "q" => "recent" },
|
23
|
+
{ "sCI" => "S0007", "n" => "status", "s" => "False", "q" => "recent" }
|
24
|
+
]
|
25
|
+
expect( validate(message) ).to be_nil
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'accepts valid status request with two intersections' do
|
29
|
+
message["sS"] = [
|
30
|
+
{ "sCI" => "S0007", "n" => "intersection", "s" => "1,2", "q" => "recent" },
|
31
|
+
{ "sCI" => "S0007", "n" => "status", "s" => "True,True", "q" => "recent" }
|
32
|
+
]
|
33
|
+
expect( validate(message) ).to be_nil
|
34
|
+
|
35
|
+
message["sS"] = [
|
36
|
+
{ "sCI" => "S0007", "n" => "intersection", "s" => "1,2", "q" => "recent" },
|
37
|
+
{ "sCI" => "S0007", "n" => "status", "s" => "True,False", "q" => "recent" }
|
38
|
+
]
|
39
|
+
expect( validate(message) ).to be_nil
|
40
|
+
|
41
|
+
message["sS"] = [
|
42
|
+
{ "sCI" => "S0007", "n" => "intersection", "s" => "1,2", "q" => "recent" },
|
43
|
+
{ "sCI" => "S0007", "n" => "status", "s" => "False,True", "q" => "recent" }
|
44
|
+
]
|
45
|
+
expect( validate(message) ).to be_nil
|
46
|
+
|
47
|
+
message["sS"] = [
|
48
|
+
{ "sCI" => "S0007", "n" => "intersection", "s" => "1,2", "q" => "recent" },
|
49
|
+
{ "sCI" => "S0007", "n" => "status", "s" => "False,True", "q" => "recent" }
|
50
|
+
]
|
51
|
+
expect( validate(message) ).to be_nil
|
52
|
+
end
|
53
|
+
|
54
|
+
it 'catches bad intersections list' do
|
55
|
+
invalid = message.dup
|
56
|
+
invalid["sS"] = [
|
57
|
+
{ "sCI" => "S0007", "n" => "intersection", "s" => "1,2,", "q" => "recent" },
|
58
|
+
]
|
59
|
+
expect( validate(invalid) ).to eq([
|
60
|
+
["/sS/0/s", "pattern"]
|
61
|
+
])
|
62
|
+
|
63
|
+
invalid["sS"] = [
|
64
|
+
{ "sCI" => "S0007", "n" => "intersection", "s" => ",1,2", "q" => "recent" },
|
65
|
+
]
|
66
|
+
expect( validate(invalid) ).to eq([
|
67
|
+
["/sS/0/s", "pattern"]
|
68
|
+
])
|
69
|
+
|
70
|
+
invalid["sS"] = [
|
71
|
+
{ "sCI" => "S0007", "n" => "intersection", "s" => ",", "q" => "recent" },
|
72
|
+
]
|
73
|
+
expect( validate(invalid) ).to eq([
|
74
|
+
["/sS/0/s", "pattern"]
|
75
|
+
])
|
76
|
+
|
77
|
+
invalid["sS"] = [
|
78
|
+
{ "sCI" => "S0007", "n" => "intersection", "s" => "1,,2", "q" => "recent" },
|
79
|
+
]
|
80
|
+
expect( validate(invalid) ).to eq([
|
81
|
+
["/sS/0/s", "pattern"]
|
82
|
+
])
|
83
|
+
|
84
|
+
invalid["sS"] = [
|
85
|
+
{ "sCI" => "S0007", "n" => "intersection", "s" => "1,a", "q" => "recent" },
|
86
|
+
]
|
87
|
+
expect( validate(invalid) ).to eq([
|
88
|
+
["/sS/0/s", "pattern"]
|
89
|
+
])
|
90
|
+
end
|
91
|
+
|
92
|
+
it 'catches bad intersections list' do
|
93
|
+
invalid = message.dup
|
94
|
+
invalid["sS"] = [
|
95
|
+
{ "sCI" => "S0007", "n" => "status", "s" => "True,False,", "q" => "recent" },
|
96
|
+
]
|
97
|
+
expect( validate(invalid) ).to eq([
|
98
|
+
["/sS/0/s", "pattern"]
|
99
|
+
])
|
100
|
+
|
101
|
+
invalid["sS"] = [
|
102
|
+
{ "sCI" => "S0007", "n" => "status", "s" => ",True,False", "q" => "recent" },
|
103
|
+
]
|
104
|
+
expect( validate(invalid) ).to eq([
|
105
|
+
["/sS/0/s", "pattern"]
|
106
|
+
])
|
107
|
+
|
108
|
+
invalid["sS"] = [
|
109
|
+
{ "sCI" => "S0007", "n" => "status", "s" => ",", "q" => "recent" },
|
110
|
+
]
|
111
|
+
expect( validate(invalid) ).to eq([
|
112
|
+
["/sS/0/s", "pattern"]
|
113
|
+
])
|
114
|
+
|
115
|
+
invalid["sS"] = [
|
116
|
+
{ "sCI" => "S0007", "n" => "status", "s" => "True,,False", "q" => "recent" },
|
117
|
+
]
|
118
|
+
expect( validate(invalid) ).to eq([
|
119
|
+
["/sS/0/s", "pattern"]
|
120
|
+
])
|
121
|
+
|
122
|
+
invalid["sS"] = [
|
123
|
+
{ "sCI" => "S0007", "n" => "status", "s" => "True,1", "q" => "recent" },
|
124
|
+
]
|
125
|
+
expect( validate(invalid) ).to eq([
|
126
|
+
["/sS/0/s", "pattern"]
|
127
|
+
])
|
128
|
+
end
|
129
|
+
|
130
|
+
it 'catches bad status code' do
|
131
|
+
invalid = message.dup
|
132
|
+
invalid['sS'].first['sCI'] = '99'
|
133
|
+
expect( validate(invalid) ).to eq([
|
134
|
+
["/sS/0/sCI", "enum"]
|
135
|
+
])
|
136
|
+
end
|
137
|
+
|
138
|
+
it 'catches bad status code' do
|
139
|
+
invalid = message.dup
|
140
|
+
invalid['sS'].first['sCI'] = 3
|
141
|
+
expect( validate(invalid) ).to eq([
|
142
|
+
["/sS/0/sCI", "enum"]
|
143
|
+
])
|
144
|
+
|
145
|
+
invalid['sS'].first['sCI'] = '3'
|
146
|
+
expect( validate(invalid) ).to eq([
|
147
|
+
["/sS/0/sCI", "enum"]
|
148
|
+
])
|
149
|
+
end
|
150
|
+
|
151
|
+
it 'catches bad name' do
|
152
|
+
invalid = message.dup
|
153
|
+
invalid['sS'].first['n'] = 3
|
154
|
+
expect( validate(invalid) ).to eq([
|
155
|
+
["/sS/0/n", "enum"]
|
156
|
+
])
|
157
|
+
end
|
158
|
+
|
159
|
+
end
|
metadata
ADDED
@@ -0,0 +1,939 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rsmp_schemer
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Emil Tin
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-05-19 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: json_schemer
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.2.18
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.2.18
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rspec
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 3.9.0
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 3.9.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec-expectations
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 3.9.1
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 3.9.1
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '13.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '13.0'
|
69
|
+
description: Validate RSMP message against RSMP JSON Schema. Support validating against
|
70
|
+
core and different SXL's, in different versions.
|
71
|
+
email:
|
72
|
+
- zf0f@kk.dk
|
73
|
+
executables: []
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- ".gitignore"
|
78
|
+
- ".gitmodules"
|
79
|
+
- ".rspec"
|
80
|
+
- CHANGELOG.md
|
81
|
+
- Gemfile
|
82
|
+
- Gemfile.lock
|
83
|
+
- LICENSE
|
84
|
+
- README.md
|
85
|
+
- Rakefile
|
86
|
+
- bin/console
|
87
|
+
- bin/setup
|
88
|
+
- lib/rsmp_schemer.rb
|
89
|
+
- lib/rsmp_schemer/error.rb
|
90
|
+
- lib/rsmp_schemer/schemer.rb
|
91
|
+
- lib/rsmp_schemer/version.rb
|
92
|
+
- rsmp_schemer.gemspec
|
93
|
+
- schemas/core_3.1.2/.rspec
|
94
|
+
- schemas/core_3.1.2/Gemfile
|
95
|
+
- schemas/core_3.1.2/Gemfile.lock
|
96
|
+
- schemas/core_3.1.2/LICENSE
|
97
|
+
- schemas/core_3.1.2/README.md
|
98
|
+
- schemas/core_3.1.2/examples/validate.rb
|
99
|
+
- schemas/core_3.1.2/schema/core/aggregated_status.json
|
100
|
+
- schemas/core_3.1.2/schema/core/alarm.json
|
101
|
+
- schemas/core_3.1.2/schema/core/command_request.json
|
102
|
+
- schemas/core_3.1.2/schema/core/command_response.json
|
103
|
+
- schemas/core_3.1.2/schema/core/core.json
|
104
|
+
- schemas/core_3.1.2/schema/core/definitions.json
|
105
|
+
- schemas/core_3.1.2/schema/core/message_ack.json
|
106
|
+
- schemas/core_3.1.2/schema/core/message_not_ack.json
|
107
|
+
- schemas/core_3.1.2/schema/core/rsmp.json
|
108
|
+
- schemas/core_3.1.2/schema/core/status.json
|
109
|
+
- schemas/core_3.1.2/schema/core/status_request.json
|
110
|
+
- schemas/core_3.1.2/schema/core/status_response.json
|
111
|
+
- schemas/core_3.1.2/schema/core/status_subscribe.json
|
112
|
+
- schemas/core_3.1.2/schema/core/status_unsubscribe.json
|
113
|
+
- schemas/core_3.1.2/schema/core/status_update.json
|
114
|
+
- schemas/core_3.1.2/schema/core/version.json
|
115
|
+
- schemas/core_3.1.2/schema/core/watchdog.json
|
116
|
+
- schemas/core_3.1.2/spec/core/aggregated_status_spec.rb
|
117
|
+
- schemas/core_3.1.2/spec/core/alarm_spec.rb
|
118
|
+
- schemas/core_3.1.2/spec/core/command_request_spec.rb
|
119
|
+
- schemas/core_3.1.2/spec/core/command_response_spec.rb
|
120
|
+
- schemas/core_3.1.2/spec/core/core_spec.rb
|
121
|
+
- schemas/core_3.1.2/spec/core/message_ack.rb
|
122
|
+
- schemas/core_3.1.2/spec/core/message_not_ack_spec.rb
|
123
|
+
- schemas/core_3.1.2/spec/core/status_request_spec.rb
|
124
|
+
- schemas/core_3.1.2/spec/core/status_response_spec.rb
|
125
|
+
- schemas/core_3.1.2/spec/core/status_subscribe_spec.rb
|
126
|
+
- schemas/core_3.1.2/spec/core/status_unsubscribe_spec.rb
|
127
|
+
- schemas/core_3.1.2/spec/core/status_update_spec.rb
|
128
|
+
- schemas/core_3.1.2/spec/core/version_spec.rb
|
129
|
+
- schemas/core_3.1.2/spec/core/watchdog_spec.rb
|
130
|
+
- schemas/core_3.1.2/spec/schemer_helper.rb
|
131
|
+
- schemas/core_3.1.2/spec/spec_helper.rb
|
132
|
+
- schemas/core_3.1.3/.rspec
|
133
|
+
- schemas/core_3.1.3/Gemfile
|
134
|
+
- schemas/core_3.1.3/Gemfile.lock
|
135
|
+
- schemas/core_3.1.3/LICENSE
|
136
|
+
- schemas/core_3.1.3/README.md
|
137
|
+
- schemas/core_3.1.3/examples/validate.rb
|
138
|
+
- schemas/core_3.1.3/schema/core/aggregated_status.json
|
139
|
+
- schemas/core_3.1.3/schema/core/aggregated_status_request.json
|
140
|
+
- schemas/core_3.1.3/schema/core/alarm.json
|
141
|
+
- schemas/core_3.1.3/schema/core/command_request.json
|
142
|
+
- schemas/core_3.1.3/schema/core/command_response.json
|
143
|
+
- schemas/core_3.1.3/schema/core/core.json
|
144
|
+
- schemas/core_3.1.3/schema/core/definitions.json
|
145
|
+
- schemas/core_3.1.3/schema/core/message_ack.json
|
146
|
+
- schemas/core_3.1.3/schema/core/message_not_ack.json
|
147
|
+
- schemas/core_3.1.3/schema/core/rsmp.json
|
148
|
+
- schemas/core_3.1.3/schema/core/status.json
|
149
|
+
- schemas/core_3.1.3/schema/core/status_request.json
|
150
|
+
- schemas/core_3.1.3/schema/core/status_response.json
|
151
|
+
- schemas/core_3.1.3/schema/core/status_subscribe.json
|
152
|
+
- schemas/core_3.1.3/schema/core/status_unsubscribe.json
|
153
|
+
- schemas/core_3.1.3/schema/core/status_update.json
|
154
|
+
- schemas/core_3.1.3/schema/core/version.json
|
155
|
+
- schemas/core_3.1.3/schema/core/watchdog.json
|
156
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0001.json
|
157
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0002.json
|
158
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0003.json
|
159
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0004.json
|
160
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0005.json
|
161
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0006.json
|
162
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0007.json
|
163
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0008.json
|
164
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0009.json
|
165
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0101.json
|
166
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0201.json
|
167
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0202.json
|
168
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0301.json
|
169
|
+
- schemas/core_3.1.3/schema/tlc/alarms/A0302.json
|
170
|
+
- schemas/core_3.1.3/schema/tlc/alarms/alarms.json
|
171
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0001.json
|
172
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0002.json
|
173
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0003.json
|
174
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0004.json
|
175
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0005.json
|
176
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0006.json
|
177
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0007.json
|
178
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0008.json
|
179
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0010.json
|
180
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0011.json
|
181
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0012.json
|
182
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0013.json
|
183
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0014.json
|
184
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0015.json
|
185
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0016.json
|
186
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0017.json
|
187
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0018.json
|
188
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0019.json
|
189
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0020.json
|
190
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0021.json
|
191
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0103.json
|
192
|
+
- schemas/core_3.1.3/schema/tlc/commands/M0104.json
|
193
|
+
- schemas/core_3.1.3/schema/tlc/commands/command_requests.json
|
194
|
+
- schemas/core_3.1.3/schema/tlc/commands/command_responses.json
|
195
|
+
- schemas/core_3.1.3/schema/tlc/commands/commands.json
|
196
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0001.json
|
197
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0002.json
|
198
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0003.json
|
199
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0004.json
|
200
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0005.json
|
201
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0006.json
|
202
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0007.json
|
203
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0008.json
|
204
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0009.json
|
205
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0010.json
|
206
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0011.json
|
207
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0012.json
|
208
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0013.json
|
209
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0014.json
|
210
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0015.json
|
211
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0016.json
|
212
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0017.json
|
213
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0018.json
|
214
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0019.json
|
215
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0020.json
|
216
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0021.json
|
217
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0022.json
|
218
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0023.json
|
219
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0024.json
|
220
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0025.json
|
221
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0026.json
|
222
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0027.json
|
223
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0028.json
|
224
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0029.json
|
225
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0030.json
|
226
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0031.json
|
227
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0091.json
|
228
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0092.json
|
229
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0095.json
|
230
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0096.json
|
231
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0097.json
|
232
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0201.json
|
233
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0202.json
|
234
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0203.json
|
235
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0204.json
|
236
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0205.json
|
237
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0206.json
|
238
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0207.json
|
239
|
+
- schemas/core_3.1.3/schema/tlc/statuses/S0208.json
|
240
|
+
- schemas/core_3.1.3/schema/tlc/statuses/statuses.json
|
241
|
+
- schemas/core_3.1.3/schema/tlc/sxl.json
|
242
|
+
- schemas/core_3.1.3/spec/core/aggregated_status_spec.rb
|
243
|
+
- schemas/core_3.1.3/spec/core/alarm_spec.rb
|
244
|
+
- schemas/core_3.1.3/spec/core/command_request_spec.rb
|
245
|
+
- schemas/core_3.1.3/spec/core/command_response_spec.rb
|
246
|
+
- schemas/core_3.1.3/spec/core/core_spec.rb
|
247
|
+
- schemas/core_3.1.3/spec/core/message_ack.rb
|
248
|
+
- schemas/core_3.1.3/spec/core/message_not_ack_spec.rb
|
249
|
+
- schemas/core_3.1.3/spec/core/status_request_spec.rb
|
250
|
+
- schemas/core_3.1.3/spec/core/status_response_spec.rb
|
251
|
+
- schemas/core_3.1.3/spec/core/status_subscribe_spec.rb
|
252
|
+
- schemas/core_3.1.3/spec/core/status_unsubscribe_spec.rb
|
253
|
+
- schemas/core_3.1.3/spec/core/status_update_spec.rb
|
254
|
+
- schemas/core_3.1.3/spec/core/version_spec.rb
|
255
|
+
- schemas/core_3.1.3/spec/core/watchdog_spec.rb
|
256
|
+
- schemas/core_3.1.3/spec/schemer_helper.rb
|
257
|
+
- schemas/core_3.1.3/spec/spec_helper.rb
|
258
|
+
- schemas/core_3.1.3/spec/tlc/M0001_spec.rb
|
259
|
+
- schemas/core_3.1.3/spec/tlc/S0007_spec.rb
|
260
|
+
- schemas/core_3.1.4/.rspec
|
261
|
+
- schemas/core_3.1.4/Gemfile
|
262
|
+
- schemas/core_3.1.4/Gemfile.lock
|
263
|
+
- schemas/core_3.1.4/LICENSE
|
264
|
+
- schemas/core_3.1.4/README.md
|
265
|
+
- schemas/core_3.1.4/examples/validate.rb
|
266
|
+
- schemas/core_3.1.4/schema/core/aggregated_status.json
|
267
|
+
- schemas/core_3.1.4/schema/core/alarm.json
|
268
|
+
- schemas/core_3.1.4/schema/core/command_request.json
|
269
|
+
- schemas/core_3.1.4/schema/core/command_response.json
|
270
|
+
- schemas/core_3.1.4/schema/core/core.json
|
271
|
+
- schemas/core_3.1.4/schema/core/definitions.json
|
272
|
+
- schemas/core_3.1.4/schema/core/message_ack.json
|
273
|
+
- schemas/core_3.1.4/schema/core/message_not_ack.json
|
274
|
+
- schemas/core_3.1.4/schema/core/rsmp.json
|
275
|
+
- schemas/core_3.1.4/schema/core/status.json
|
276
|
+
- schemas/core_3.1.4/schema/core/status_request.json
|
277
|
+
- schemas/core_3.1.4/schema/core/status_response.json
|
278
|
+
- schemas/core_3.1.4/schema/core/status_subscribe.json
|
279
|
+
- schemas/core_3.1.4/schema/core/status_unsubscribe.json
|
280
|
+
- schemas/core_3.1.4/schema/core/status_update.json
|
281
|
+
- schemas/core_3.1.4/schema/core/version.json
|
282
|
+
- schemas/core_3.1.4/schema/core/watchdog.json
|
283
|
+
- schemas/core_3.1.4/spec/core/aggregated_status_spec.rb
|
284
|
+
- schemas/core_3.1.4/spec/core/alarm_request_spec.rb
|
285
|
+
- schemas/core_3.1.4/spec/core/alarm_spec.rb
|
286
|
+
- schemas/core_3.1.4/spec/core/command_request_spec.rb
|
287
|
+
- schemas/core_3.1.4/spec/core/command_response_spec.rb
|
288
|
+
- schemas/core_3.1.4/spec/core/core_spec.rb
|
289
|
+
- schemas/core_3.1.4/spec/core/message_ack.rb
|
290
|
+
- schemas/core_3.1.4/spec/core/message_not_ack_spec.rb
|
291
|
+
- schemas/core_3.1.4/spec/core/status_request_spec.rb
|
292
|
+
- schemas/core_3.1.4/spec/core/status_response_spec.rb
|
293
|
+
- schemas/core_3.1.4/spec/core/status_subscribe_spec.rb
|
294
|
+
- schemas/core_3.1.4/spec/core/status_unsubscribe_spec.rb
|
295
|
+
- schemas/core_3.1.4/spec/core/status_update_spec.rb
|
296
|
+
- schemas/core_3.1.4/spec/core/version_spec.rb
|
297
|
+
- schemas/core_3.1.4/spec/core/watchdog_spec.rb
|
298
|
+
- schemas/core_3.1.4/spec/schemer_helper.rb
|
299
|
+
- schemas/core_3.1.4/spec/spec_helper.rb
|
300
|
+
- schemas/core_3.1.5/.rspec
|
301
|
+
- schemas/core_3.1.5/Gemfile
|
302
|
+
- schemas/core_3.1.5/Gemfile.lock
|
303
|
+
- schemas/core_3.1.5/LICENSE
|
304
|
+
- schemas/core_3.1.5/README.md
|
305
|
+
- schemas/core_3.1.5/examples/validate.rb
|
306
|
+
- schemas/core_3.1.5/schema/core/aggregated_status.json
|
307
|
+
- schemas/core_3.1.5/schema/core/aggregated_status_request.json
|
308
|
+
- schemas/core_3.1.5/schema/core/alarm.json
|
309
|
+
- schemas/core_3.1.5/schema/core/command_request.json
|
310
|
+
- schemas/core_3.1.5/schema/core/command_response.json
|
311
|
+
- schemas/core_3.1.5/schema/core/core.json
|
312
|
+
- schemas/core_3.1.5/schema/core/definitions.json
|
313
|
+
- schemas/core_3.1.5/schema/core/message_ack.json
|
314
|
+
- schemas/core_3.1.5/schema/core/message_not_ack.json
|
315
|
+
- schemas/core_3.1.5/schema/core/rsmp.json
|
316
|
+
- schemas/core_3.1.5/schema/core/status.json
|
317
|
+
- schemas/core_3.1.5/schema/core/status_request.json
|
318
|
+
- schemas/core_3.1.5/schema/core/status_response.json
|
319
|
+
- schemas/core_3.1.5/schema/core/status_subscribe.json
|
320
|
+
- schemas/core_3.1.5/schema/core/status_unsubscribe.json
|
321
|
+
- schemas/core_3.1.5/schema/core/status_update.json
|
322
|
+
- schemas/core_3.1.5/schema/core/version.json
|
323
|
+
- schemas/core_3.1.5/schema/core/watchdog.json
|
324
|
+
- schemas/core_3.1.5/spec/core/aggregated_status_spec.rb
|
325
|
+
- schemas/core_3.1.5/spec/core/alarm_request_spec.rb
|
326
|
+
- schemas/core_3.1.5/spec/core/alarm_spec.rb
|
327
|
+
- schemas/core_3.1.5/spec/core/command_request_spec.rb
|
328
|
+
- schemas/core_3.1.5/spec/core/command_response_spec.rb
|
329
|
+
- schemas/core_3.1.5/spec/core/core_spec.rb
|
330
|
+
- schemas/core_3.1.5/spec/core/message_ack.rb
|
331
|
+
- schemas/core_3.1.5/spec/core/message_not_ack_spec.rb
|
332
|
+
- schemas/core_3.1.5/spec/core/status_request_spec.rb
|
333
|
+
- schemas/core_3.1.5/spec/core/status_response_spec.rb
|
334
|
+
- schemas/core_3.1.5/spec/core/status_subscribe_spec.rb
|
335
|
+
- schemas/core_3.1.5/spec/core/status_unsubscribe_spec.rb
|
336
|
+
- schemas/core_3.1.5/spec/core/status_update_spec.rb
|
337
|
+
- schemas/core_3.1.5/spec/core/version_spec.rb
|
338
|
+
- schemas/core_3.1.5/spec/core/watchdog_spec.rb
|
339
|
+
- schemas/core_3.1.5/spec/schemer_helper.rb
|
340
|
+
- schemas/core_3.1.5/spec/spec_helper.rb
|
341
|
+
- schemas/tlc_1.0.10/.gitignore
|
342
|
+
- schemas/tlc_1.0.10/.rspec
|
343
|
+
- schemas/tlc_1.0.10/Gemfile
|
344
|
+
- schemas/tlc_1.0.10/Gemfile.lock
|
345
|
+
- schemas/tlc_1.0.10/LICENSE
|
346
|
+
- schemas/tlc_1.0.10/README.md
|
347
|
+
- schemas/tlc_1.0.10/schema/core/definitions.json
|
348
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0001.json
|
349
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0002.json
|
350
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0003.json
|
351
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0004.json
|
352
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0005.json
|
353
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0006.json
|
354
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0007.json
|
355
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0008.json
|
356
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0009.json
|
357
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0101.json
|
358
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0201.json
|
359
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0202.json
|
360
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0301.json
|
361
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/A0302.json
|
362
|
+
- schemas/tlc_1.0.10/schema/tlc/alarms/alarms.json
|
363
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0001.json
|
364
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0002.json
|
365
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0003.json
|
366
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0004.json
|
367
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0005.json
|
368
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0006.json
|
369
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0007.json
|
370
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0008.json
|
371
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0010.json
|
372
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0011.json
|
373
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0012.json
|
374
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0013.json
|
375
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0103.json
|
376
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/M0104.json
|
377
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/command_requests.json
|
378
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/command_responses.json
|
379
|
+
- schemas/tlc_1.0.10/schema/tlc/commands/commands.json
|
380
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0001.json
|
381
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0002.json
|
382
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0003.json
|
383
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0004.json
|
384
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0005.json
|
385
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0006.json
|
386
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0007.json
|
387
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0008.json
|
388
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0009.json
|
389
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0010.json
|
390
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0011.json
|
391
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0012.json
|
392
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0013.json
|
393
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0014.json
|
394
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0015.json
|
395
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0016.json
|
396
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0017.json
|
397
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0018.json
|
398
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0019.json
|
399
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0020.json
|
400
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0021.json
|
401
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0091.json
|
402
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0092.json
|
403
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0095.json
|
404
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0096.json
|
405
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0201.json
|
406
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0202.json
|
407
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0203.json
|
408
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/S0204.json
|
409
|
+
- schemas/tlc_1.0.10/schema/tlc/statuses/statuses.json
|
410
|
+
- schemas/tlc_1.0.10/schema/tlc/sxl.json
|
411
|
+
- schemas/tlc_1.0.10/spec/schemer_helper.rb
|
412
|
+
- schemas/tlc_1.0.10/spec/spec_helper.rb
|
413
|
+
- schemas/tlc_1.0.10/spec/tlc/M0001_spec.rb
|
414
|
+
- schemas/tlc_1.0.10/spec/tlc/S0007_spec.rb
|
415
|
+
- schemas/tlc_1.0.13/.gitignore
|
416
|
+
- schemas/tlc_1.0.13/.rspec
|
417
|
+
- schemas/tlc_1.0.13/Gemfile
|
418
|
+
- schemas/tlc_1.0.13/Gemfile.lock
|
419
|
+
- schemas/tlc_1.0.13/LICENSE
|
420
|
+
- schemas/tlc_1.0.13/README.md
|
421
|
+
- schemas/tlc_1.0.13/schema/core/definitions.json
|
422
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0001.json
|
423
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0002.json
|
424
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0003.json
|
425
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0004.json
|
426
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0005.json
|
427
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0006.json
|
428
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0007.json
|
429
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0008.json
|
430
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0009.json
|
431
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0101.json
|
432
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0201.json
|
433
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0202.json
|
434
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0301.json
|
435
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/A0302.json
|
436
|
+
- schemas/tlc_1.0.13/schema/tlc/alarms/alarms.json
|
437
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0001.json
|
438
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0002.json
|
439
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0003.json
|
440
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0004.json
|
441
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0005.json
|
442
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0006.json
|
443
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0007.json
|
444
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0008.json
|
445
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0010.json
|
446
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0011.json
|
447
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0012.json
|
448
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0013.json
|
449
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0014.json
|
450
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0015.json
|
451
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0016.json
|
452
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0017.json
|
453
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0018.json
|
454
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0019.json
|
455
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0103.json
|
456
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/M0104.json
|
457
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/command_requests.json
|
458
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/command_responses.json
|
459
|
+
- schemas/tlc_1.0.13/schema/tlc/commands/commands.json
|
460
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0001.json
|
461
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0002.json
|
462
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0003.json
|
463
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0004.json
|
464
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0005.json
|
465
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0006.json
|
466
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0007.json
|
467
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0008.json
|
468
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0009.json
|
469
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0010.json
|
470
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0011.json
|
471
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0012.json
|
472
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0013.json
|
473
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0014.json
|
474
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0015.json
|
475
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0016.json
|
476
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0017.json
|
477
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0018.json
|
478
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0019.json
|
479
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0020.json
|
480
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0021.json
|
481
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0022.json
|
482
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0023.json
|
483
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0024.json
|
484
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0025.json
|
485
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0026.json
|
486
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0027.json
|
487
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0028.json
|
488
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0029.json
|
489
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0091.json
|
490
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0092.json
|
491
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0095.json
|
492
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0096.json
|
493
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0201.json
|
494
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0202.json
|
495
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0203.json
|
496
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/S0204.json
|
497
|
+
- schemas/tlc_1.0.13/schema/tlc/statuses/statuses.json
|
498
|
+
- schemas/tlc_1.0.13/schema/tlc/sxl.json
|
499
|
+
- schemas/tlc_1.0.13/spec/schemer_helper.rb
|
500
|
+
- schemas/tlc_1.0.13/spec/spec_helper.rb
|
501
|
+
- schemas/tlc_1.0.13/spec/tlc/M0001_spec.rb
|
502
|
+
- schemas/tlc_1.0.13/spec/tlc/S0007_spec.rb
|
503
|
+
- schemas/tlc_1.0.14/.gitignore
|
504
|
+
- schemas/tlc_1.0.14/.rspec
|
505
|
+
- schemas/tlc_1.0.14/Gemfile
|
506
|
+
- schemas/tlc_1.0.14/Gemfile.lock
|
507
|
+
- schemas/tlc_1.0.14/LICENSE
|
508
|
+
- schemas/tlc_1.0.14/README.md
|
509
|
+
- schemas/tlc_1.0.14/schema/core/definitions.json
|
510
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0001.json
|
511
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0002.json
|
512
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0003.json
|
513
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0004.json
|
514
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0005.json
|
515
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0006.json
|
516
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0007.json
|
517
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0008.json
|
518
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0009.json
|
519
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0101.json
|
520
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0201.json
|
521
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0202.json
|
522
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0301.json
|
523
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/A0302.json
|
524
|
+
- schemas/tlc_1.0.14/schema/tlc/alarms/alarms.json
|
525
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0001.json
|
526
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0002.json
|
527
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0003.json
|
528
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0004.json
|
529
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0005.json
|
530
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0006.json
|
531
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0007.json
|
532
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0008.json
|
533
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0010.json
|
534
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0011.json
|
535
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0012.json
|
536
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0013.json
|
537
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0014.json
|
538
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0015.json
|
539
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0016.json
|
540
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0017.json
|
541
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0018.json
|
542
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0019.json
|
543
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0103.json
|
544
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/M0104.json
|
545
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/command_requests.json
|
546
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/command_responses.json
|
547
|
+
- schemas/tlc_1.0.14/schema/tlc/commands/commands.json
|
548
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0001.json
|
549
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0002.json
|
550
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0003.json
|
551
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0004.json
|
552
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0005.json
|
553
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0006.json
|
554
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0007.json
|
555
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0008.json
|
556
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0009.json
|
557
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0010.json
|
558
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0011.json
|
559
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0012.json
|
560
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0013.json
|
561
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0014.json
|
562
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0015.json
|
563
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0016.json
|
564
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0017.json
|
565
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0018.json
|
566
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0019.json
|
567
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0020.json
|
568
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0021.json
|
569
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0022.json
|
570
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0023.json
|
571
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0024.json
|
572
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0025.json
|
573
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0026.json
|
574
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0027.json
|
575
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0028.json
|
576
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0029.json
|
577
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0091.json
|
578
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0092.json
|
579
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0095.json
|
580
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0096.json
|
581
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0201.json
|
582
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0202.json
|
583
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0203.json
|
584
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0204.json
|
585
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0205.json
|
586
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0206.json
|
587
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0207.json
|
588
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/S0208.json
|
589
|
+
- schemas/tlc_1.0.14/schema/tlc/statuses/statuses.json
|
590
|
+
- schemas/tlc_1.0.14/schema/tlc/sxl.json
|
591
|
+
- schemas/tlc_1.0.14/spec/schemer_helper.rb
|
592
|
+
- schemas/tlc_1.0.14/spec/spec_helper.rb
|
593
|
+
- schemas/tlc_1.0.14/spec/tlc/M0001_spec.rb
|
594
|
+
- schemas/tlc_1.0.14/spec/tlc/S0007_spec.rb
|
595
|
+
- schemas/tlc_1.0.15/.gitignore
|
596
|
+
- schemas/tlc_1.0.15/.rspec
|
597
|
+
- schemas/tlc_1.0.15/Gemfile
|
598
|
+
- schemas/tlc_1.0.15/Gemfile.lock
|
599
|
+
- schemas/tlc_1.0.15/LICENSE
|
600
|
+
- schemas/tlc_1.0.15/README.md
|
601
|
+
- schemas/tlc_1.0.15/schema/core/definitions.json
|
602
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0001.json
|
603
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0002.json
|
604
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0003.json
|
605
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0004.json
|
606
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0005.json
|
607
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0006.json
|
608
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0007.json
|
609
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0008.json
|
610
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0009.json
|
611
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0010.json
|
612
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0101.json
|
613
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0201.json
|
614
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0202.json
|
615
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0301.json
|
616
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/A0302.json
|
617
|
+
- schemas/tlc_1.0.15/schema/tlc/alarms/alarms.json
|
618
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0001.json
|
619
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0002.json
|
620
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0003.json
|
621
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0004.json
|
622
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0005.json
|
623
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0006.json
|
624
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0007.json
|
625
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0008.json
|
626
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0010.json
|
627
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0011.json
|
628
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0012.json
|
629
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0013.json
|
630
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0014.json
|
631
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0015.json
|
632
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0016.json
|
633
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0017.json
|
634
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0018.json
|
635
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0019.json
|
636
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0020.json
|
637
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0021.json
|
638
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0103.json
|
639
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/M0104.json
|
640
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/command_requests.json
|
641
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/command_responses.json
|
642
|
+
- schemas/tlc_1.0.15/schema/tlc/commands/commands.json
|
643
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0001.json
|
644
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0002.json
|
645
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0003.json
|
646
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0004.json
|
647
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0005.json
|
648
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0006.json
|
649
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0007.json
|
650
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0008.json
|
651
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0009.json
|
652
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0010.json
|
653
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0011.json
|
654
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0012.json
|
655
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0013.json
|
656
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0014.json
|
657
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0015.json
|
658
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0016.json
|
659
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0017.json
|
660
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0018.json
|
661
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0019.json
|
662
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0020.json
|
663
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0021.json
|
664
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0022.json
|
665
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0023.json
|
666
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0024.json
|
667
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0025.json
|
668
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0026.json
|
669
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0027.json
|
670
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0028.json
|
671
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0029.json
|
672
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0030.json
|
673
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0031.json
|
674
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0091.json
|
675
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0092.json
|
676
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0095.json
|
677
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0096.json
|
678
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0097.json
|
679
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0098.json
|
680
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0201.json
|
681
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0202.json
|
682
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0203.json
|
683
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0204.json
|
684
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0205.json
|
685
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0206.json
|
686
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0207.json
|
687
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/S0208.json
|
688
|
+
- schemas/tlc_1.0.15/schema/tlc/statuses/statuses.json
|
689
|
+
- schemas/tlc_1.0.15/schema/tlc/sxl.json
|
690
|
+
- schemas/tlc_1.0.15/spec/schemer_helper.rb
|
691
|
+
- schemas/tlc_1.0.15/spec/spec_helper.rb
|
692
|
+
- schemas/tlc_1.0.15/spec/tlc/M0001_spec.rb
|
693
|
+
- schemas/tlc_1.0.15/spec/tlc/S0007_spec.rb
|
694
|
+
- schemas/tlc_1.0.7/.gitignore
|
695
|
+
- schemas/tlc_1.0.7/.rspec
|
696
|
+
- schemas/tlc_1.0.7/Gemfile
|
697
|
+
- schemas/tlc_1.0.7/Gemfile.lock
|
698
|
+
- schemas/tlc_1.0.7/LICENSE
|
699
|
+
- schemas/tlc_1.0.7/README.md
|
700
|
+
- schemas/tlc_1.0.7/schema/core/definitions.json
|
701
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0001.json
|
702
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0002.json
|
703
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0003.json
|
704
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0004.json
|
705
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0005.json
|
706
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0006.json
|
707
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0007.json
|
708
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0008.json
|
709
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0009.json
|
710
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0101.json
|
711
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0201.json
|
712
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0202.json
|
713
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0301.json
|
714
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/A0302.json
|
715
|
+
- schemas/tlc_1.0.7/schema/tlc/alarms/alarms.json
|
716
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/M0001.json
|
717
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/M0002.json
|
718
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/M0003.json
|
719
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/M0004.json
|
720
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/M0005.json
|
721
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/M0006.json
|
722
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/M0007.json
|
723
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/M0008.json
|
724
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/M0010.json
|
725
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/M0011.json
|
726
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/M0103.json
|
727
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/M0104.json
|
728
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/command_requests.json
|
729
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/command_responses.json
|
730
|
+
- schemas/tlc_1.0.7/schema/tlc/commands/commands.json
|
731
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0001.json
|
732
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0002.json
|
733
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0003.json
|
734
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0004.json
|
735
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0005.json
|
736
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0006.json
|
737
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0007.json
|
738
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0008.json
|
739
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0009.json
|
740
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0010.json
|
741
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0011.json
|
742
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0012.json
|
743
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0013.json
|
744
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0014.json
|
745
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0015.json
|
746
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0016.json
|
747
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0017.json
|
748
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0018.json
|
749
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0019.json
|
750
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0020.json
|
751
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0021.json
|
752
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0091.json
|
753
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0092.json
|
754
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0095.json
|
755
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0096.json
|
756
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0201.json
|
757
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0202.json
|
758
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0203.json
|
759
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/S0204.json
|
760
|
+
- schemas/tlc_1.0.7/schema/tlc/statuses/statuses.json
|
761
|
+
- schemas/tlc_1.0.7/schema/tlc/sxl.json
|
762
|
+
- schemas/tlc_1.0.7/spec/schemer_helper.rb
|
763
|
+
- schemas/tlc_1.0.7/spec/spec_helper.rb
|
764
|
+
- schemas/tlc_1.0.7/spec/tlc/M0001_spec.rb
|
765
|
+
- schemas/tlc_1.0.7/spec/tlc/S0007_spec.rb
|
766
|
+
- schemas/tlc_1.0.8/.gitignore
|
767
|
+
- schemas/tlc_1.0.8/.rspec
|
768
|
+
- schemas/tlc_1.0.8/Gemfile
|
769
|
+
- schemas/tlc_1.0.8/Gemfile.lock
|
770
|
+
- schemas/tlc_1.0.8/LICENSE
|
771
|
+
- schemas/tlc_1.0.8/README.md
|
772
|
+
- schemas/tlc_1.0.8/schema/core/definitions.json
|
773
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0001.json
|
774
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0002.json
|
775
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0003.json
|
776
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0004.json
|
777
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0005.json
|
778
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0006.json
|
779
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0007.json
|
780
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0008.json
|
781
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0009.json
|
782
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0101.json
|
783
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0201.json
|
784
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0202.json
|
785
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0301.json
|
786
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/A0302.json
|
787
|
+
- schemas/tlc_1.0.8/schema/tlc/alarms/alarms.json
|
788
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0001.json
|
789
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0002.json
|
790
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0003.json
|
791
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0004.json
|
792
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0005.json
|
793
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0006.json
|
794
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0007.json
|
795
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0008.json
|
796
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0010.json
|
797
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0011.json
|
798
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0012.json
|
799
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0013.json
|
800
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0103.json
|
801
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/M0104.json
|
802
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/command_requests.json
|
803
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/command_responses.json
|
804
|
+
- schemas/tlc_1.0.8/schema/tlc/commands/commands.json
|
805
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0001.json
|
806
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0002.json
|
807
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0003.json
|
808
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0004.json
|
809
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0005.json
|
810
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0006.json
|
811
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0007.json
|
812
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0008.json
|
813
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0009.json
|
814
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0010.json
|
815
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0011.json
|
816
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0012.json
|
817
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0013.json
|
818
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0014.json
|
819
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0015.json
|
820
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0016.json
|
821
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0017.json
|
822
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0018.json
|
823
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0019.json
|
824
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0020.json
|
825
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0021.json
|
826
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0091.json
|
827
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0092.json
|
828
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0095.json
|
829
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0096.json
|
830
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0201.json
|
831
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0202.json
|
832
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0203.json
|
833
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/S0204.json
|
834
|
+
- schemas/tlc_1.0.8/schema/tlc/statuses/statuses.json
|
835
|
+
- schemas/tlc_1.0.8/schema/tlc/sxl.json
|
836
|
+
- schemas/tlc_1.0.8/spec/schemer_helper.rb
|
837
|
+
- schemas/tlc_1.0.8/spec/spec_helper.rb
|
838
|
+
- schemas/tlc_1.0.8/spec/tlc/M0001_spec.rb
|
839
|
+
- schemas/tlc_1.0.8/spec/tlc/S0007_spec.rb
|
840
|
+
- schemas/tlc_1.0.9/.gitignore
|
841
|
+
- schemas/tlc_1.0.9/.rspec
|
842
|
+
- schemas/tlc_1.0.9/Gemfile
|
843
|
+
- schemas/tlc_1.0.9/Gemfile.lock
|
844
|
+
- schemas/tlc_1.0.9/LICENSE
|
845
|
+
- schemas/tlc_1.0.9/README.md
|
846
|
+
- schemas/tlc_1.0.9/schema/core/definitions.json
|
847
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0001.json
|
848
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0002.json
|
849
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0003.json
|
850
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0004.json
|
851
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0005.json
|
852
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0006.json
|
853
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0007.json
|
854
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0008.json
|
855
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0009.json
|
856
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0101.json
|
857
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0201.json
|
858
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0202.json
|
859
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0301.json
|
860
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/A0302.json
|
861
|
+
- schemas/tlc_1.0.9/schema/tlc/alarms/alarms.json
|
862
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0001.json
|
863
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0002.json
|
864
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0003.json
|
865
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0004.json
|
866
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0005.json
|
867
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0006.json
|
868
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0007.json
|
869
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0008.json
|
870
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0010.json
|
871
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0011.json
|
872
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0012.json
|
873
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0013.json
|
874
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0103.json
|
875
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/M0104.json
|
876
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/command_requests.json
|
877
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/command_responses.json
|
878
|
+
- schemas/tlc_1.0.9/schema/tlc/commands/commands.json
|
879
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0001.json
|
880
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0002.json
|
881
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0003.json
|
882
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0004.json
|
883
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0005.json
|
884
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0006.json
|
885
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0007.json
|
886
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0008.json
|
887
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0009.json
|
888
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0010.json
|
889
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0011.json
|
890
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0012.json
|
891
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0013.json
|
892
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0014.json
|
893
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0015.json
|
894
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0016.json
|
895
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0017.json
|
896
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0018.json
|
897
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0019.json
|
898
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0020.json
|
899
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0021.json
|
900
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0091.json
|
901
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0092.json
|
902
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0095.json
|
903
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0096.json
|
904
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0201.json
|
905
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0202.json
|
906
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0203.json
|
907
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/S0204.json
|
908
|
+
- schemas/tlc_1.0.9/schema/tlc/statuses/statuses.json
|
909
|
+
- schemas/tlc_1.0.9/schema/tlc/sxl.json
|
910
|
+
- schemas/tlc_1.0.9/spec/schemer_helper.rb
|
911
|
+
- schemas/tlc_1.0.9/spec/spec_helper.rb
|
912
|
+
- schemas/tlc_1.0.9/spec/tlc/M0001_spec.rb
|
913
|
+
- schemas/tlc_1.0.9/spec/tlc/S0007_spec.rb
|
914
|
+
homepage: https://github.com/rsmp-nordic/rsmp_schemer
|
915
|
+
licenses: []
|
916
|
+
metadata:
|
917
|
+
homepage_uri: https://github.com/rsmp-nordic/rsmp_schemer
|
918
|
+
source_code_uri: https://github.com/rsmp-nordic/rsmp_schemer
|
919
|
+
changelog_uri: https://github.com/rsmp-nordic/rsmp_schemer/CHANGELOG.md
|
920
|
+
post_install_message:
|
921
|
+
rdoc_options: []
|
922
|
+
require_paths:
|
923
|
+
- lib
|
924
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
925
|
+
requirements:
|
926
|
+
- - ">="
|
927
|
+
- !ruby/object:Gem::Version
|
928
|
+
version: 2.4.0
|
929
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
930
|
+
requirements:
|
931
|
+
- - ">="
|
932
|
+
- !ruby/object:Gem::Version
|
933
|
+
version: '0'
|
934
|
+
requirements: []
|
935
|
+
rubygems_version: 3.2.3
|
936
|
+
signing_key:
|
937
|
+
specification_version: 4
|
938
|
+
summary: Validate RSMP message against RSMP JSON Schema.
|
939
|
+
test_files: []
|