nantum-responses.js 693 B

12345678910111213141516171819202122232425262728293031
  1. 'use strict';
  2. const sampleEvent1 = {
  3. event_identifier: 'a2fa542eca8d4e829ff5c0f0c8e68710',
  4. client_id: 'D8:1D:4B:20:5A:65:4C:50:32:FA',
  5. test_event: false,
  6. event_mod_number: 0,
  7. offLine: false,
  8. dr_mode_data: {
  9. operation_mode_value: 'NORMAL',
  10. // event_status: 'NEAR',
  11. // currentTime: 'xxxxx',
  12. },
  13. dr_event_data: {
  14. notification_time: '2020-04-25T22:50:00.000Z',
  15. start_time: '2020-04-26T23:00:00.000Z',
  16. end_time: '2020-04-26T23:55:00.000Z',
  17. event_instance: [{
  18. event_type_id: 'LOAD_AMOUNT',
  19. event_info_values: [
  20. {value: 41, timeOffset: 0},
  21. {value: 42, timeOffset: 10}
  22. ]
  23. }]
  24. }
  25. };
  26. module.exports = {
  27. sampleEvent1
  28. };