ocpp-messages
Version:
TypeScript definitions for Open Charge Point Protocol (OCPP)
25 lines • 526 B
JSON
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$id": "urn:OCPP:Cp:2:2018:4:ClearedChargingLimitRequest",
"comment": "OCPP 2.0 - v1p0",
"type": "object",
"additionalProperties": true,
"properties": {
"chargingLimitSource": {
"type": "string",
"additionalProperties": true,
"enum": [
"EMS",
"Other",
"SO",
"CSO"
]
},
"evseId": {
"type": "integer"
}
},
"required": [
"chargingLimitSource"
]
}