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,34 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Number of traffic situations\n\nCan be used for the management system to check the number of traffic situations configured in the controller.",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"number"
|
9
|
+
]
|
10
|
+
}
|
11
|
+
}
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"if" : {
|
15
|
+
"required" : [
|
16
|
+
"n"
|
17
|
+
],
|
18
|
+
"properties" : {
|
19
|
+
"n" : {
|
20
|
+
"const" : "number"
|
21
|
+
}
|
22
|
+
}
|
23
|
+
},
|
24
|
+
"then" : {
|
25
|
+
"properties" : {
|
26
|
+
"s" : {
|
27
|
+
"description" : "Number of traffic situations",
|
28
|
+
"$ref" : "../../core/definitions.json#/integer"
|
29
|
+
}
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
]
|
34
|
+
}
|
@@ -0,0 +1,61 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Control mode\n\nCan be used for the management system to check the current control mode (startup, normal, standby, failure, test).",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"controlmode",
|
9
|
+
"intersection"
|
10
|
+
]
|
11
|
+
}
|
12
|
+
}
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"if" : {
|
16
|
+
"required" : [
|
17
|
+
"n"
|
18
|
+
],
|
19
|
+
"properties" : {
|
20
|
+
"n" : {
|
21
|
+
"const" : "intersection"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"then" : {
|
26
|
+
"properties" : {
|
27
|
+
"s" : {
|
28
|
+
"description" : "0: Not applicable (only one intersection exists or applicable for all intersection of the traffic light controller)\nOther value: Intersection number",
|
29
|
+
"$ref" : "../../core/definitions.json#/integer"
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"if" : {
|
36
|
+
"required" : [
|
37
|
+
"n"
|
38
|
+
],
|
39
|
+
"properties" : {
|
40
|
+
"n" : {
|
41
|
+
"const" : "controlmode"
|
42
|
+
}
|
43
|
+
}
|
44
|
+
},
|
45
|
+
"then" : {
|
46
|
+
"properties" : {
|
47
|
+
"s" : {
|
48
|
+
"type" : "string",
|
49
|
+
"enum" : [
|
50
|
+
"control",
|
51
|
+
"failure",
|
52
|
+
"standby",
|
53
|
+
"startup",
|
54
|
+
"test"
|
55
|
+
]
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
60
|
+
]
|
61
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Manually set detector logic\n\nProvides status of detector logic (1-255) regarding if they are either forced to true or false.\n\nCan be used to connect RSMP compatible detection equipment to the traffic light controller. Can also be used for prioritization.",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"detectorlogics"
|
9
|
+
]
|
10
|
+
}
|
11
|
+
}
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"if" : {
|
15
|
+
"required" : [
|
16
|
+
"n"
|
17
|
+
],
|
18
|
+
"properties" : {
|
19
|
+
"n" : {
|
20
|
+
"const" : "detectorlogics"
|
21
|
+
}
|
22
|
+
}
|
23
|
+
},
|
24
|
+
"then" : {
|
25
|
+
"properties" : {
|
26
|
+
"s" : {
|
27
|
+
"description" : "Manually set detector logics (1/0) as text field",
|
28
|
+
"type" : "string",
|
29
|
+
"pattern" : "^[01]*$"
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
]
|
35
|
+
}
|
@@ -0,0 +1,61 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Operator logged in/out OP-panel\n\nProvides information if maintenance personnel is currently working on site.",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"status",
|
9
|
+
"user"
|
10
|
+
]
|
11
|
+
}
|
12
|
+
}
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"if" : {
|
16
|
+
"required" : [
|
17
|
+
"n"
|
18
|
+
],
|
19
|
+
"properties" : {
|
20
|
+
"n" : {
|
21
|
+
"const" : "user"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"then" : {
|
26
|
+
"properties" : {
|
27
|
+
"s" : {
|
28
|
+
"type" : "string",
|
29
|
+
"enum" : [
|
30
|
+
"[nobody]",
|
31
|
+
"[username]"
|
32
|
+
]
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"if" : {
|
39
|
+
"required" : [
|
40
|
+
"n"
|
41
|
+
],
|
42
|
+
"properties" : {
|
43
|
+
"n" : {
|
44
|
+
"const" : "status"
|
45
|
+
}
|
46
|
+
}
|
47
|
+
},
|
48
|
+
"then" : {
|
49
|
+
"properties" : {
|
50
|
+
"s" : {
|
51
|
+
"type" : "string",
|
52
|
+
"enum" : [
|
53
|
+
"login",
|
54
|
+
"logout"
|
55
|
+
]
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
60
|
+
]
|
61
|
+
}
|
@@ -0,0 +1,61 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Operator logged in/out web-interface\n\nProvides information if maintenance personnel is currently working with the controller.",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"status",
|
9
|
+
"user"
|
10
|
+
]
|
11
|
+
}
|
12
|
+
}
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"if" : {
|
16
|
+
"required" : [
|
17
|
+
"n"
|
18
|
+
],
|
19
|
+
"properties" : {
|
20
|
+
"n" : {
|
21
|
+
"const" : "user"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
},
|
25
|
+
"then" : {
|
26
|
+
"properties" : {
|
27
|
+
"s" : {
|
28
|
+
"type" : "string",
|
29
|
+
"enum" : [
|
30
|
+
"[nobody]",
|
31
|
+
"[username]"
|
32
|
+
]
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"if" : {
|
39
|
+
"required" : [
|
40
|
+
"n"
|
41
|
+
],
|
42
|
+
"properties" : {
|
43
|
+
"n" : {
|
44
|
+
"const" : "status"
|
45
|
+
}
|
46
|
+
}
|
47
|
+
},
|
48
|
+
"then" : {
|
49
|
+
"properties" : {
|
50
|
+
"s" : {
|
51
|
+
"type" : "string",
|
52
|
+
"enum" : [
|
53
|
+
"login",
|
54
|
+
"logout"
|
55
|
+
]
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
60
|
+
]
|
61
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Version of Traffic Light Controller\n\nProvides diagnostic version information.",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"status"
|
9
|
+
]
|
10
|
+
}
|
11
|
+
}
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"if" : {
|
15
|
+
"required" : [
|
16
|
+
"n"
|
17
|
+
],
|
18
|
+
"properties" : {
|
19
|
+
"n" : {
|
20
|
+
"const" : "status"
|
21
|
+
}
|
22
|
+
}
|
23
|
+
},
|
24
|
+
"then" : {
|
25
|
+
"properties" : {
|
26
|
+
"s" : {
|
27
|
+
"description" : "Manufacturer, product name and version of traffic light controller",
|
28
|
+
"type" : "string"
|
29
|
+
}
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
]
|
34
|
+
}
|
@@ -0,0 +1,139 @@
|
|
1
|
+
{
|
2
|
+
"allOf" : [
|
3
|
+
{
|
4
|
+
"description" : "Current date and time\n\nProvides diagnostic information about the current date and time set in the controller.",
|
5
|
+
"properties" : {
|
6
|
+
"n" : {
|
7
|
+
"enum" : [
|
8
|
+
"day",
|
9
|
+
"hour",
|
10
|
+
"minute",
|
11
|
+
"month",
|
12
|
+
"second",
|
13
|
+
"year"
|
14
|
+
]
|
15
|
+
}
|
16
|
+
}
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"if" : {
|
20
|
+
"required" : [
|
21
|
+
"n"
|
22
|
+
],
|
23
|
+
"properties" : {
|
24
|
+
"n" : {
|
25
|
+
"const" : "year"
|
26
|
+
}
|
27
|
+
}
|
28
|
+
},
|
29
|
+
"then" : {
|
30
|
+
"properties" : {
|
31
|
+
"s" : {
|
32
|
+
"description" : "Year according to format YYYY. NOTE: UTC is used",
|
33
|
+
"$ref" : "../../core/definitions.json#/integer"
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"if" : {
|
40
|
+
"required" : [
|
41
|
+
"n"
|
42
|
+
],
|
43
|
+
"properties" : {
|
44
|
+
"n" : {
|
45
|
+
"const" : "month"
|
46
|
+
}
|
47
|
+
}
|
48
|
+
},
|
49
|
+
"then" : {
|
50
|
+
"properties" : {
|
51
|
+
"s" : {
|
52
|
+
"description" : "Month (01-12) according to format MM. Note: UTC is used",
|
53
|
+
"$ref" : "../../core/definitions.json#/integer"
|
54
|
+
}
|
55
|
+
}
|
56
|
+
}
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"if" : {
|
60
|
+
"required" : [
|
61
|
+
"n"
|
62
|
+
],
|
63
|
+
"properties" : {
|
64
|
+
"n" : {
|
65
|
+
"const" : "day"
|
66
|
+
}
|
67
|
+
}
|
68
|
+
},
|
69
|
+
"then" : {
|
70
|
+
"properties" : {
|
71
|
+
"s" : {
|
72
|
+
"description" : "Day of month (01-31) according to format DD. Note: UTC is used",
|
73
|
+
"$ref" : "../../core/definitions.json#/integer"
|
74
|
+
}
|
75
|
+
}
|
76
|
+
}
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"if" : {
|
80
|
+
"required" : [
|
81
|
+
"n"
|
82
|
+
],
|
83
|
+
"properties" : {
|
84
|
+
"n" : {
|
85
|
+
"const" : "hour"
|
86
|
+
}
|
87
|
+
}
|
88
|
+
},
|
89
|
+
"then" : {
|
90
|
+
"properties" : {
|
91
|
+
"s" : {
|
92
|
+
"description" : "Hour of day (00-23) according to format DD. Note: UTC is used",
|
93
|
+
"$ref" : "../../core/definitions.json#/integer"
|
94
|
+
}
|
95
|
+
}
|
96
|
+
}
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"if" : {
|
100
|
+
"required" : [
|
101
|
+
"n"
|
102
|
+
],
|
103
|
+
"properties" : {
|
104
|
+
"n" : {
|
105
|
+
"const" : "minute"
|
106
|
+
}
|
107
|
+
}
|
108
|
+
},
|
109
|
+
"then" : {
|
110
|
+
"properties" : {
|
111
|
+
"s" : {
|
112
|
+
"description" : "Minute (00-59) according to format MM. Note: UTC is used",
|
113
|
+
"$ref" : "../../core/definitions.json#/integer"
|
114
|
+
}
|
115
|
+
}
|
116
|
+
}
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"if" : {
|
120
|
+
"required" : [
|
121
|
+
"n"
|
122
|
+
],
|
123
|
+
"properties" : {
|
124
|
+
"n" : {
|
125
|
+
"const" : "second"
|
126
|
+
}
|
127
|
+
}
|
128
|
+
},
|
129
|
+
"then" : {
|
130
|
+
"properties" : {
|
131
|
+
"s" : {
|
132
|
+
"description" : "Second (00-59) according to format SS. Note: UTC is used",
|
133
|
+
"$ref" : "../../core/definitions.json#/integer"
|
134
|
+
}
|
135
|
+
}
|
136
|
+
}
|
137
|
+
}
|
138
|
+
]
|
139
|
+
}
|
@@ -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
|
+
"type" : "string"
|
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
|
+
}
|