Notify Event¶
This message allows OEM to notifiy events to the CSMS through OCPP, in particular error codes.
NotifyEvent¶
Topic: cs/josev. Used to forward an event to the CSMS through OCPP.  | 
|||
type  | 
object  | 
||
properties  | 
|||
  | 
type  | 
string  | 
|
format  | 
uuid  | 
||
  | 
const  | 
notify_event  | 
|
  | 
const  | 
update  | 
|
  | 
type  | 
object  | 
|
properties  | 
|||
  | 
Identifies the event  | 
||
type  | 
integer  | 
||
  | 
Timestamp of the moment the report was generated.  | 
||
type  | 
string  | 
||
format  | 
date-time  | 
||
  | 
Technical (error) code as reported by component.  | 
||
type  | 
string  | 
||
maxLength  | 
50  | 
||
  | 
Technical detail information as reported by component.  | 
||
type  | 
string  | 
||
maxLength  | 
500  | 
||
  | 
If an event notification is linked to a specific transaction, this field can be used to specify its transactionId.  | 
||
type  | 
string  | 
||
maxLength  | 
36  | 
||
  | 
The identifier of the EVSE if an event notification is linked  | 
||
type  | 
string  | 
||
Example:
{
 "id": "123e4567-e89b-12d3-a456-426614174000",
 "name": "notify_event",
 "type": "update",
 "data": {
     "event_id": 1,
     "timestamp": "2023-10-01T12:00:00Z",
     "tech_code": "E001", # Optional
     "tech_info": "Overcurrent detected",  # Optional
     "transaction_id": "abc123",  # Optional
     "evse_id": "DE*SEV*E123456789"  # Optional
 }
}