ClearChargingProfile.json 699 B

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