SetChargingProfileResponse.json 517 B

123456789101112131415161718192021
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "id": "urn:OCPP:1.6:2019:12:SetChargingProfileResponse",
  4. "title": "SetChargingProfileResponse",
  5. "type": "object",
  6. "properties": {
  7. "status": {
  8. "type": "string",
  9. "additionalProperties": false,
  10. "enum": [
  11. "Accepted",
  12. "Rejected",
  13. "NotSupported"
  14. ]
  15. }
  16. },
  17. "additionalProperties": false,
  18. "required": [
  19. "status"
  20. ]
  21. }