Connector and Charging

Description.

Signal the change of status or charging state of a connector.

This message will be depricated in the next release. Please use the ChangeAvailabilityUpdate message instead.

ConnectorAndChargingUpdate

Topic: josev/cs. Used to update OCPP of a Connector or Charging status event

type

object

properties

  • id

type

string

format

uuid

  • name

const

connector_and_charging

  • type

const

update

  • data

type

object

properties

  • evse_id

type

string

  • connector_id

type

number

  • charging_status

enum

ev_connected, suspended_ev, suspended_evse, charging, idle

  • connector_status

enum

available, occupied, unavailable, reserved, faulted

Example:

{
    "id": "86bfba63-a44f-40cc-8b4b-dc4c9d771e52",
    "name": "connector_and_charging",
    "type": "update",
    "data": {
        "evse_id": "DE*SEV*E123456789",
        "connector_id": 1,
        "connector_status": "occupied"  # or available, unavailable, reserved, faulted
        "charging_status": "ev_connected"  # or suspended_ev, suspended_evse, charging, idle
    },
}