Aucune description

BootNotification.json 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "BootNotificationRequest",
  4. "type": "object",
  5. "properties": {
  6. "chargePointVendor": {
  7. "type": "string",
  8. "maxLength": 20
  9. },
  10. "chargePointModel": {
  11. "type": "string",
  12. "maxLength": 20
  13. },
  14. "chargePointSerialNumber": {
  15. "type": "string",
  16. "maxLength": 25
  17. },
  18. "chargeBoxSerialNumber": {
  19. "type": "string",
  20. "maxLength": 25
  21. },
  22. "firmwareVersion": {
  23. "type": "string",
  24. "maxLength": 50
  25. },
  26. "iccid": {
  27. "type": "string",
  28. "maxLength": 20
  29. },
  30. "imsi": {
  31. "type": "string",
  32. "maxLength": 20
  33. },
  34. "meterType": {
  35. "type": "string",
  36. "maxLength": 25
  37. },
  38. "meterSerialNumber": {
  39. "type": "string",
  40. "maxLength": 25
  41. }
  42. },
  43. "additionalProperties": false,
  44. "required": [
  45. "chargePointVendor",
  46. "chargePointModel"
  47. ]
  48. }