EVSEMapPoint
Simplified EVSE representation for map rendering
Unique identifier for the EVSE. Used to fetch full EVSE details.
List of EVSE capabilities. Indicates supported features like RFID, credit card, etc.
connectors ConnectorMapPoint[]
Simplified connector data for map display. Contains only essential connector information.
Unique identifier for the connector. Used to fetch full connector details.
Type of power (AC or DC). Used for filtering and display.
Current operational status. For example: AVAILABLE, CHARGING, OUTOFORDER.
Whether the connector is enabled for use. Disabled connectors cannot start new sessions.
Whether the connector should be shown on maps. Unpublished connectors are hidden from public views.
Whether the connector is currently online (null if not supported). Indicates real-time connectivity status.
{
"uid": "string",
"capabilities": [
"string"
],
"connectors": [
{
"uid": "string",
"power_type": "string",
"status": "string",
"is_enabled": true,
"is_published": true,
"online": true
}
]
}