Hardware Fault¶
HardwareFaultUpdate¶
Topic: cs/josev. Used to notify OCPP of a hardware fault  | 
|||
type  | 
object  | 
||
properties  | 
|||
  | 
type  | 
string  | 
|
format  | 
uuid  | 
||
  | 
const  | 
hardware_fault  | 
|
  | 
const  | 
update  | 
|
  | 
type  | 
object  | 
|
properties  | 
|||
  | 
type  | 
string  | 
|
  | 
type  | 
string  | 
|
  | 
enum  | 
overcurrent_fault, emergency_stop, ground_fault, energy_limit_reached, power_loss, power_quality, reboot, other  | 
|
Example:
{
    "id": "86bfba63-a44f-40cc-8b4b-dc4c9d771e52",
    "name": "hardware_fault",
    "type": "update",
    "data": {
        "evse_id": "DE*SEV*E123456789",
        "component_name": "evse",
        # possible values according to the spec
        # emergency_stop
        # overcurrent_fault
        # ground_fault
        # energy_limit_reached
        # power_quality
        # power_loss
        # reboot
        # other
        "fault_name": "overcurrent_fault",
    },
}