BootNotification.json 1.2 KB

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