nantum-responses.js 727 B

123456789101112131415161718192021222324252627282930313233
  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: 2,
  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. {
  19. event_type_id: 'LOAD_AMOUNT',
  20. event_info_values: [
  21. { value: 41, timeOffset: 0 },
  22. { value: 42, timeOffset: 10 },
  23. ],
  24. },
  25. ],
  26. },
  27. };
  28. module.exports = {
  29. sampleEvent1,
  30. };