ocpp-standard-schema
Version:
Contains OCPP JSON schemas for validation purposes
10 lines (9 loc) • 502 B
TypeScript
export default interface StatusNotification {
connectorId: number;
status: 'Available' | 'Occupied' | 'Reserved' | 'Unavailable' | 'Faulted';
errorCode: 'ConnectorLockFailure' | 'GroundFailure' | 'HighTemperature' | 'Mode3Error' | 'NoError' | 'OtherError' | 'OverCurrentFailure' | 'PowerMeterFailure' | 'PowerSwitchFailure' | 'ReaderFailure' | 'ResetFailure' | 'UnderVoltage' | 'WeakSignal';
info?: string;
timestamp?: string;
vendorId?: string;
vendorErrorCode?: string;
}