BootNotificationResponse.json 714 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "id": "urn:OCPP:1.6:2019:12:BootNotificationResponse",
  4. "title": "BootNotificationResponse",
  5. "type": "object",
  6. "properties": {
  7. "status": {
  8. "type": "string",
  9. "additionalProperties": false,
  10. "enum": [
  11. "Accepted",
  12. "Pending",
  13. "Rejected"
  14. ]
  15. },
  16. "currentTime": {
  17. "type": "string",
  18. "format": "date-time"
  19. },
  20. "interval": {
  21. "type": "integer"
  22. }
  23. },
  24. "additionalProperties": false,
  25. "required": [
  26. "status",
  27. "currentTime",
  28. "interval"
  29. ]
  30. }