GetCompositeSchedule.json 601 B

123456789101112131415161718192021222324252627
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "id": "urn:OCPP:1.6:2019:12:GetCompositeScheduleRequest",
  4. "title": "GetCompositeScheduleRequest",
  5. "type": "object",
  6. "properties": {
  7. "connectorId": {
  8. "type": "integer"
  9. },
  10. "duration": {
  11. "type": "integer"
  12. },
  13. "chargingRateUnit": {
  14. "type": "string",
  15. "additionalProperties": false,
  16. "enum": [
  17. "A",
  18. "W"
  19. ]
  20. }
  21. },
  22. "additionalProperties": false,
  23. "required": [
  24. "connectorId",
  25. "duration"
  26. ]
  27. }