| 123456789101112131415161718192021 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "id": "urn:OCPP:1.6:2019:12:SetChargingProfileResponse",
- "title": "SetChargingProfileResponse",
- "type": "object",
- "properties": {
- "status": {
- "type": "string",
- "additionalProperties": false,
- "enum": [
- "Accepted",
- "Rejected",
- "NotSupported"
- ]
- }
- },
- "additionalProperties": false,
- "required": [
- "status"
- ]
- }
|