Fixes to OCA OCPP 2.0.1 JSON schemas
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / ClearChargingProfile.json
1 {
2 "$schema": "http://json-schema.org/draft-07/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": ["ChargePointMaxProfile", "TxDefaultProfile", "TxProfile"]
17 },
18 "stackLevel": {
19 "type": "integer"
20 }
21 },
22 "additionalProperties": false
23 }