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,55 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Checksum of traffic parameters\n\nCan be used to check if any traffic parameter has been changed.\n\nFor instance, depending on controller, maintenance personnel can modify traffic parameters on site to optimize traffic flow. This status provides the ability to monitor if any traffic parameter has been changed. The traffic parameters may be downloaded with S0098.",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"checksum",
|
9
|
+
"timestamp"
|
10
|
+
]
|
11
|
+
}
|
12
|
+
}
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"if" : {
|
16
|
+
"required" : [
|
17
|
+
"n"
|
18
|
+
],
|
19
|
+
"properties" : {
|
20
|
+
"n" : {
|
21
|
+
"const" : "checksum"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"then" : {
|
26
|
+
"properties" : {
|
27
|
+
"s" : {
|
28
|
+
"description" : "Checksum of the traffic parameters\nUses SHA-2 as hashing algorithm\nIncludes\n- all signal programs, including program versions\n- signal group settings\n- time plans\n- safety matrix\n- intergreen times\n- detector settings\n\nIt should NOT include:\n- network settings\n- log files\n- software\n- other device settings that are not part of the signal program\n\nNote:\n- The checksum should be calculated using the same data as used in S0098\n",
|
29
|
+
"type" : "string"
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"if" : {
|
36
|
+
"required" : [
|
37
|
+
"n"
|
38
|
+
],
|
39
|
+
"properties" : {
|
40
|
+
"n" : {
|
41
|
+
"const" : "timestamp"
|
42
|
+
}
|
43
|
+
}
|
44
|
+
},
|
45
|
+
"then" : {
|
46
|
+
"properties" : {
|
47
|
+
"s" : {
|
48
|
+
"description" : "Time stamp of the checksum. Format according to W3C XML dateTime with a resolution of 3 decimal places. All time stamps in UTC. E.g. 2009-10-02T14:34:34.341Z",
|
49
|
+
"$ref" : "../../core/definitions.json#/timestamp"
|
50
|
+
}
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
]
|
55
|
+
}
|
@@ -0,0 +1,76 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Configuration of traffic parameters\n\nCan be used to download all traffic parameters from the controller.\n\nFor instance, depending on controller, maintenance personnel can modify traffic parameters on site to optimize traffic flow. This status provides the ability to downloaded them.",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"config",
|
9
|
+
"timestamp",
|
10
|
+
"version"
|
11
|
+
]
|
12
|
+
}
|
13
|
+
}
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"if" : {
|
17
|
+
"required" : [
|
18
|
+
"n"
|
19
|
+
],
|
20
|
+
"properties" : {
|
21
|
+
"n" : {
|
22
|
+
"const" : "config"
|
23
|
+
}
|
24
|
+
}
|
25
|
+
},
|
26
|
+
"then" : {
|
27
|
+
"properties" : {
|
28
|
+
"s" : {
|
29
|
+
"description" : "Traffic parameters\nIncludes\n- all signal programs, including program versions\n- signal group settings\n- time plans\n- safety matrix\n- intergreen times\n- detector setting\n\nIt should NOT include:\n- network settings\n- log files\n- software\n- other device settings that are not part of the signal program\n\nNote:\n- There is no way to upload this binary file to the TLC using RSMP\n- The format of the binary file is not specified and is not expected to be compatible between suppliers",
|
30
|
+
"type" : "string"
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
},
|
35
|
+
{
|
36
|
+
"if" : {
|
37
|
+
"required" : [
|
38
|
+
"n"
|
39
|
+
],
|
40
|
+
"properties" : {
|
41
|
+
"n" : {
|
42
|
+
"const" : "timestamp"
|
43
|
+
}
|
44
|
+
}
|
45
|
+
},
|
46
|
+
"then" : {
|
47
|
+
"properties" : {
|
48
|
+
"s" : {
|
49
|
+
"description" : "Time stamp of the config. Format according to W3C XML dateTime with a resolution of 3 decimal places. All time stamps in UTC. E.g. 2009-10-02T14:34:34.341Z",
|
50
|
+
"$ref" : "../../core/definitions.json#/timestamp"
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"if" : {
|
57
|
+
"required" : [
|
58
|
+
"n"
|
59
|
+
],
|
60
|
+
"properties" : {
|
61
|
+
"n" : {
|
62
|
+
"const" : "version"
|
63
|
+
}
|
64
|
+
}
|
65
|
+
},
|
66
|
+
"then" : {
|
67
|
+
"properties" : {
|
68
|
+
"s" : {
|
69
|
+
"description" : "Version information of the configuration. Contains basic information such as controller id, changes to config and other information. The format is not specified in detail",
|
70
|
+
"type" : "string"
|
71
|
+
}
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
75
|
+
]
|
76
|
+
}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Traffic Counting: Number of vehicles\n\nUsed for Traffic counting.",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"starttime",
|
9
|
+
"vehicles"
|
10
|
+
]
|
11
|
+
}
|
12
|
+
}
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"if" : {
|
16
|
+
"required" : [
|
17
|
+
"n"
|
18
|
+
],
|
19
|
+
"properties" : {
|
20
|
+
"n" : {
|
21
|
+
"const" : "starttime"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"then" : {
|
26
|
+
"properties" : {
|
27
|
+
"s" : {
|
28
|
+
"description" : "Time stamp for start of measuring. Format according to W3C XML dateTime with a resolution of 3 decimal places. All time stamps in UTC. E.g. 2009-10-02T14:34:34.341Z",
|
29
|
+
"$ref" : "../../core/definitions.json#/timestamp"
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"if" : {
|
36
|
+
"required" : [
|
37
|
+
"n"
|
38
|
+
],
|
39
|
+
"properties" : {
|
40
|
+
"n" : {
|
41
|
+
"const" : "vehicles"
|
42
|
+
}
|
43
|
+
}
|
44
|
+
},
|
45
|
+
"then" : {
|
46
|
+
"properties" : {
|
47
|
+
"s" : {
|
48
|
+
"description" : "Number of vehicles on a given detector logic (since last update)",
|
49
|
+
"$ref" : "../../core/definitions.json#/integer"
|
50
|
+
}
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
]
|
55
|
+
}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Traffic Counting: Vehicle speed\n\nUsed for Traffic counting.",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"speed",
|
9
|
+
"starttime"
|
10
|
+
]
|
11
|
+
}
|
12
|
+
}
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"if" : {
|
16
|
+
"required" : [
|
17
|
+
"n"
|
18
|
+
],
|
19
|
+
"properties" : {
|
20
|
+
"n" : {
|
21
|
+
"const" : "starttime"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"then" : {
|
26
|
+
"properties" : {
|
27
|
+
"s" : {
|
28
|
+
"description" : "Time stamp for start of measuring. Format according to W3C XML dateTime with a resolution of 3 decimal places. All time stamps in UTC. E.g. 2009-10-02T14:34:34.341Z",
|
29
|
+
"$ref" : "../../core/definitions.json#/timestamp"
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"if" : {
|
36
|
+
"required" : [
|
37
|
+
"n"
|
38
|
+
],
|
39
|
+
"properties" : {
|
40
|
+
"n" : {
|
41
|
+
"const" : "speed"
|
42
|
+
}
|
43
|
+
}
|
44
|
+
},
|
45
|
+
"then" : {
|
46
|
+
"properties" : {
|
47
|
+
"s" : {
|
48
|
+
"description" : "Average speed in km/h",
|
49
|
+
"$ref" : "../../core/definitions.json#/integer"
|
50
|
+
}
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
]
|
55
|
+
}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Traffic Counting: Occupancy\n\nUsed for Traffic counting.",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"occupancy",
|
9
|
+
"starttime"
|
10
|
+
]
|
11
|
+
}
|
12
|
+
}
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"if" : {
|
16
|
+
"required" : [
|
17
|
+
"n"
|
18
|
+
],
|
19
|
+
"properties" : {
|
20
|
+
"n" : {
|
21
|
+
"const" : "starttime"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"then" : {
|
26
|
+
"properties" : {
|
27
|
+
"s" : {
|
28
|
+
"description" : "Time stamp for start of measuring. Format according to W3C XML dateTime with a resolution of 3 decimal places. All time stamps in UTC. E.g. 2009-10-02T14:34:34.341Z",
|
29
|
+
"$ref" : "../../core/definitions.json#/timestamp"
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"if" : {
|
36
|
+
"required" : [
|
37
|
+
"n"
|
38
|
+
],
|
39
|
+
"properties" : {
|
40
|
+
"n" : {
|
41
|
+
"const" : "occupancy"
|
42
|
+
}
|
43
|
+
}
|
44
|
+
},
|
45
|
+
"then" : {
|
46
|
+
"properties" : {
|
47
|
+
"s" : {
|
48
|
+
"description" : "Occupancy in percent (0-100%)",
|
49
|
+
"$ref" : "../../core/definitions.json#/integer"
|
50
|
+
}
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
]
|
55
|
+
}
|
@@ -0,0 +1,223 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Traffic Counting: Number of vehicles of given classification\n\nUsed for Traffic counting.",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"B",
|
9
|
+
"C",
|
10
|
+
"F",
|
11
|
+
"L",
|
12
|
+
"LS",
|
13
|
+
"MC",
|
14
|
+
"P",
|
15
|
+
"PS",
|
16
|
+
"SP",
|
17
|
+
"starttime"
|
18
|
+
]
|
19
|
+
}
|
20
|
+
}
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"if" : {
|
24
|
+
"required" : [
|
25
|
+
"n"
|
26
|
+
],
|
27
|
+
"properties" : {
|
28
|
+
"n" : {
|
29
|
+
"const" : "starttime"
|
30
|
+
}
|
31
|
+
}
|
32
|
+
},
|
33
|
+
"then" : {
|
34
|
+
"properties" : {
|
35
|
+
"s" : {
|
36
|
+
"description" : "Time stamp for start of measuring. Format according to W3C XML dateTime with a resolution of 3 decimal places. All time stamps in UTC. E.g. 2009-10-02T14:34:34.341Z",
|
37
|
+
"$ref" : "../../core/definitions.json#/timestamp"
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"if" : {
|
44
|
+
"required" : [
|
45
|
+
"n"
|
46
|
+
],
|
47
|
+
"properties" : {
|
48
|
+
"n" : {
|
49
|
+
"const" : "P"
|
50
|
+
}
|
51
|
+
}
|
52
|
+
},
|
53
|
+
"then" : {
|
54
|
+
"properties" : {
|
55
|
+
"s" : {
|
56
|
+
"description" : "Number of cars",
|
57
|
+
"$ref" : "../../core/definitions.json#/integer"
|
58
|
+
}
|
59
|
+
}
|
60
|
+
}
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"if" : {
|
64
|
+
"required" : [
|
65
|
+
"n"
|
66
|
+
],
|
67
|
+
"properties" : {
|
68
|
+
"n" : {
|
69
|
+
"const" : "PS"
|
70
|
+
}
|
71
|
+
}
|
72
|
+
},
|
73
|
+
"then" : {
|
74
|
+
"properties" : {
|
75
|
+
"s" : {
|
76
|
+
"description" : "Number of cars with trailers",
|
77
|
+
"$ref" : "../../core/definitions.json#/integer"
|
78
|
+
}
|
79
|
+
}
|
80
|
+
}
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"if" : {
|
84
|
+
"required" : [
|
85
|
+
"n"
|
86
|
+
],
|
87
|
+
"properties" : {
|
88
|
+
"n" : {
|
89
|
+
"const" : "L"
|
90
|
+
}
|
91
|
+
}
|
92
|
+
},
|
93
|
+
"then" : {
|
94
|
+
"properties" : {
|
95
|
+
"s" : {
|
96
|
+
"description" : "Number of trucks",
|
97
|
+
"$ref" : "../../core/definitions.json#/integer"
|
98
|
+
}
|
99
|
+
}
|
100
|
+
}
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"if" : {
|
104
|
+
"required" : [
|
105
|
+
"n"
|
106
|
+
],
|
107
|
+
"properties" : {
|
108
|
+
"n" : {
|
109
|
+
"const" : "LS"
|
110
|
+
}
|
111
|
+
}
|
112
|
+
},
|
113
|
+
"then" : {
|
114
|
+
"properties" : {
|
115
|
+
"s" : {
|
116
|
+
"description" : "Number of trucks with trailers",
|
117
|
+
"$ref" : "../../core/definitions.json#/integer"
|
118
|
+
}
|
119
|
+
}
|
120
|
+
}
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"if" : {
|
124
|
+
"required" : [
|
125
|
+
"n"
|
126
|
+
],
|
127
|
+
"properties" : {
|
128
|
+
"n" : {
|
129
|
+
"const" : "B"
|
130
|
+
}
|
131
|
+
}
|
132
|
+
},
|
133
|
+
"then" : {
|
134
|
+
"properties" : {
|
135
|
+
"s" : {
|
136
|
+
"description" : "Number of busses",
|
137
|
+
"$ref" : "../../core/definitions.json#/integer"
|
138
|
+
}
|
139
|
+
}
|
140
|
+
}
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"if" : {
|
144
|
+
"required" : [
|
145
|
+
"n"
|
146
|
+
],
|
147
|
+
"properties" : {
|
148
|
+
"n" : {
|
149
|
+
"const" : "SP"
|
150
|
+
}
|
151
|
+
}
|
152
|
+
},
|
153
|
+
"then" : {
|
154
|
+
"properties" : {
|
155
|
+
"s" : {
|
156
|
+
"description" : "Number of trams",
|
157
|
+
"$ref" : "../../core/definitions.json#/integer"
|
158
|
+
}
|
159
|
+
}
|
160
|
+
}
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"if" : {
|
164
|
+
"required" : [
|
165
|
+
"n"
|
166
|
+
],
|
167
|
+
"properties" : {
|
168
|
+
"n" : {
|
169
|
+
"const" : "MC"
|
170
|
+
}
|
171
|
+
}
|
172
|
+
},
|
173
|
+
"then" : {
|
174
|
+
"properties" : {
|
175
|
+
"s" : {
|
176
|
+
"description" : "Number of motor cycles",
|
177
|
+
"$ref" : "../../core/definitions.json#/integer"
|
178
|
+
}
|
179
|
+
}
|
180
|
+
}
|
181
|
+
},
|
182
|
+
{
|
183
|
+
"if" : {
|
184
|
+
"required" : [
|
185
|
+
"n"
|
186
|
+
],
|
187
|
+
"properties" : {
|
188
|
+
"n" : {
|
189
|
+
"const" : "C"
|
190
|
+
}
|
191
|
+
}
|
192
|
+
},
|
193
|
+
"then" : {
|
194
|
+
"properties" : {
|
195
|
+
"s" : {
|
196
|
+
"description" : "Number of bicycles",
|
197
|
+
"$ref" : "../../core/definitions.json#/integer"
|
198
|
+
}
|
199
|
+
}
|
200
|
+
}
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"if" : {
|
204
|
+
"required" : [
|
205
|
+
"n"
|
206
|
+
],
|
207
|
+
"properties" : {
|
208
|
+
"n" : {
|
209
|
+
"const" : "F"
|
210
|
+
}
|
211
|
+
}
|
212
|
+
},
|
213
|
+
"then" : {
|
214
|
+
"properties" : {
|
215
|
+
"s" : {
|
216
|
+
"description" : "Number of pedestrians",
|
217
|
+
"$ref" : "../../core/definitions.json#/integer"
|
218
|
+
}
|
219
|
+
}
|
220
|
+
}
|
221
|
+
}
|
222
|
+
]
|
223
|
+
}
|