Stations Count Response
The CountType
structure is the top-level element in the responses to requests against the stations/count
resource. The name of the top-level element in an XML response is CountResult
.
Element | Data Type | Mandatory | Description |
---|---|---|---|
count | Integer | Yes | Number of EV charging stations found in the area specified in request. |
The example in JSON format is as follows:
{
"count": 3
}
The example in XML format is as follows:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ev:countResult
xmlns:fuel="http://www.here.com/2014/02/ACS-Fuel"
xmlns:common="http://www.here.com/2014/02/ACS-Common"
xmlns:ev="http://www.here.com/2014/02/ACS-EV"
xmlns:parking-offstreet="http://www.here.com/2014/02/ACS-Parking-Offstreet">
<count>59</count>
</ev:countResult>