{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "ChargeStationListItems",
	"type": "object",
	"additionalProperties": false,
	"description": "TAnalytics-v3 .. Charge station List Item for EV",
	"properties": {
		"entity_id": {
			"type": "string",
			"description": "Entity_id of charge station POI "
		},
		"position": {
			"type": "integer",
			"description": "position of charge station from origin along the route"
		},
		"distance": {
			"type": "number",
			"description": "along route distance to charge station from origin, in miles"
		},
		"search_id": {
			"type": "string",
			"description": "Search id that was triggered to identify the charge station"
		}
	},
	"required": [
		"entity_id",
		"position",
		"distance",
		"search_id"
	]
}