| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "id": "urn:OCPP:1.6:2019:12:StatusNotificationRequest",
- "title": "StatusNotificationRequest",
- "type": "object",
- "properties": {
- "connectorId": {
- "type": "integer"
- },
- "errorCode": {
- "type": "string",
- "additionalProperties": false,
- "enum": [
- "ConnectorLockFailure",
- "EVCommunicationError",
- "GroundFailure",
- "HighTemperature",
- "InternalError",
- "LocalListConflict",
- "NoError",
- "OtherError",
- "OverCurrentFailure",
- "PowerMeterFailure",
- "PowerSwitchFailure",
- "ReaderFailure",
- "ResetFailure",
- "UnderVoltage",
- "OverVoltage",
- "WeakSignal"
- ]
- },
- "info": {
- "type": "string",
- "maxLength": 50
- },
- "status": {
- "type": "string",
- "additionalProperties": false,
- "enum": [
- "Available",
- "Preparing",
- "Charging",
- "SuspendedEVSE",
- "SuspendedEV",
- "Finishing",
- "Reserved",
- "Unavailable",
- "Faulted"
- ]
- },
- "timestamp": {
- "type": "string",
- "format": "date-time"
- },
- "vendorId": {
- "type": "string",
- "maxLength": 255
- },
- "vendorErrorCode": {
- "type": "string",
- "maxLength": 50
- }
- },
- "additionalProperties": false,
- "required": [
- "connectorId",
- "errorCode",
- "status"
- ]
- }
|