Cable Info¶
Description.
This message is only required if a cable is NOT permanently attached. If it is, then the rated_cable_current should be passed in as part of the OCPP configuration at startup.
CableInfoUpdate¶
Topic: cs/josev. Used to inform OCPP of the status of a non-permanently-attached cable  | 
|||
type  | 
object  | 
||
properties  | 
|||
  | 
type  | 
string  | 
|
format  | 
uuid  | 
||
  | 
const  | 
cable_info  | 
|
  | 
const  | 
update  | 
|
  | 
type  | 
object  | 
|
properties  | 
|||
  | 
type  | 
string  | 
|
  | 
enum  | 
connected, disconnected, unknown  | 
|
  | 
type  | 
integer  | 
|
  | 
enum  | 
locked, unlocked, unknown, error  | 
|
Example:
{
  "id": "dd7de5f8-64b0-4796-9fd6-a428de018e21",
  "name": "cable_info",
  "type": "update",
  "data": {
    "connection_status": "connected" OR "disconnected" OR "unknown",
    "rated_cable_current": 13, # integer, value in Amperes.
    "lock": "locked" OR "unlocked" OR "unknown" OR "error",
    "evse_id": "DE*SEV*E123456789",
  }
}