| 12345678910111213141516171819202122232425262728293031 |
- 'use strict';
- const sampleEvent1 = {
- event_identifier: 'a2fa542eca8d4e829ff5c0f0c8e68710',
- client_id: 'D8:1D:4B:20:5A:65:4C:50:32:FA',
- test_event: false,
- event_mod_number: 0,
- offLine: false,
- dr_mode_data: {
- operation_mode_value: 'NORMAL',
- // event_status: 'NEAR',
- // currentTime: 'xxxxx',
- },
- dr_event_data: {
- notification_time: '2020-04-25T22:50:00.000Z',
- start_time: '2020-04-26T23:00:00.000Z',
- end_time: '2020-04-26T23:55:00.000Z',
- event_instance: [{
- event_type_id: 'LOAD_AMOUNT',
- event_info_values: [
- {value: 41, timeOffset: 0},
- {value: 42, timeOffset: 10}
- ]
- }]
- }
- };
- module.exports = {
- sampleEvent1
- };
|